/* Global AI Contest - Main Stylesheet */
/* Inspired by eurorevision.eu dark neon design */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f35;
    --bg-card-hover: #242b45;
    --accent-primary: #00ff88;
    --accent-secondary: #00d4ff;
    --accent-gold: #ffd700;
    --accent-purple: #a855f7;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #1e293b;
    --gradient-primary: linear-gradient(135deg, #00ff88, #00d4ff);
    --gradient-hero: linear-gradient(180deg, rgba(10,14,26,0) 0%, rgba(10,14,26,0.8) 50%, #0a0e1a 100%);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--text-primary);
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.btn-signin {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-signin:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Countdown Timer */
.countdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    display: inline-flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
}

.countdown-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}

.countdown-item {
    text-align: center;
}

.countdown-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--accent-primary);
    font-weight: 300;
    align-self: flex-start;
    margin-top: 0.3rem;
}

/* Song Cards / Carousel */
.songs-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.song-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.song-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: var(--shadow-glow);
}

.song-card-image {
    position: relative;
    padding-top: 100%;
    background: var(--bg-secondary);
    overflow: hidden;
}

.song-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.song-card:hover .song-card-image img {
    transform: scale(1.05);
}

.song-card-country {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.song-card-country img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.song-card-play,
.song-card .song-play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
    border: none;
    color: var(--bg-primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.song-card:hover .song-card-play,
.song-card:hover .song-play-btn {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(0, 255, 136, 0.5);
}

.song-card-play:hover,
.song-card .song-play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.song-card .song-play-btn.is-playing {
    animation: pulse-glow 2s ease-in-out infinite;
}

.song-card-body {
    padding: 1.2rem;
}

.song-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.song-card-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.song-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-card-tool {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.vote-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.vote-btn.voted {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.vote-count {
    font-weight: 700;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: none;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
}

.audio-player.active {
    display: flex;
}

.audio-player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.audio-player-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.audio-player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.audio-player-progress {
    flex: 1;
    max-width: 500px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.audio-player-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Submissions CTA */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.03), transparent);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    color: var(--bg-primary);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Countries Page */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.country-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.country-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.country-card img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.country-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Results Page */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.results-table th,
.results-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.results-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-table tr:hover {
    background: var(--bg-card-hover);
}

.results-table .rank {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    width: 60px;
}

.results-table .rank.gold { color: #ffd700; }
.results-table .rank.silver { color: #c0c0c0; }
.results-table .rank.bronze { color: #cd7f32; }

.results-table .points {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.page-title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .countdown {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success { background: rgba(0, 255, 136, 0.15); color: var(--accent-primary); }
.badge-warning { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); }
.badge-info { background: rgba(0, 212, 255, 0.15); color: var(--accent-secondary); }
.badge-danger { background: rgba(255, 71, 87, 0.15); color: #ff4757; }

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-card);
}

.toast.show {
    transform: translateX(0);
}

.toast-success { border-color: var(--accent-primary); }
.toast-error { border-color: #ff4757; }

/* User Navigation Buttons */
.btn-submit-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-submit-nav:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-user-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.btn-user-nav:hover {
    border-color: var(--accent-primary);
    background: var(--bg-card-hover);
}

.btn-admin-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-admin-nav:hover {
    color: var(--text-primary);
    border-color: var(--border-color);
    background: var(--bg-card);
}

@media (max-width: 768px) {
    .nav-btn-text {
        display: none;
    }
    .btn-submit-nav {
        padding: 0.5rem 0.7rem;
    }
}

/* KiBeats Player Embed */
.kibeats-player {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

.kibeats-player iframe {
    display: block;
    border: none;
    width: 100%;
    height: 174px;
}

/* Entry Card with Player */
.entry-card-player {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* OnPlug Login Button Style */
.btn-onplug {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-onplug:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

/* Submission Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-approved {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ===== FOOTER PLAYER ===== */
.footer-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, #1a1f35 0%, #0f1320 100%);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.footer-player.visible {
    transform: translateY(0);
}

.player-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    max-width: 280px;
    flex: 1;
}

.player-artwork {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

.player-artwork-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.player-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,255,136,0.3);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.player-meta {
    overflow: hidden;
}

.player-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.player-btn:hover:not(:disabled) {
    color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.1);
}

.player-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.player-btn-main {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1rem;
}

.player-btn-main:hover:not(:disabled) {
    background: var(--gradient-primary);
    color: #000;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.player-progress-section {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 600px;
}

.player-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 35px;
}

.player-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: height 0.2s;
}

.player-progress-bar:hover {
    height: 6px;
}

.player-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    transition: none;
}

.player-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}

.player-progress-bar:hover .player-progress-handle {
    opacity: 1;
}

.player-volume-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.player-volume-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-volume-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 2px;
}

/* Play buttons on song cards */
.song-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.song-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

.song-play-btn.is-playing {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(0, 255, 136, 0.6); }
}

/* Responsive player */
@media (max-width: 768px) {
    .player-container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .player-track-info {
        min-width: 120px;
        max-width: 150px;
    }
    
    .player-volume-section {
        display: none;
    }
    
    .player-progress-section {
        flex: 1;
    }
    
    .player-artwork {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .player-progress-section {
        display: none;
    }
    
    .player-track-info {
        flex: 1;
        max-width: none;
    }
}
