/* ========================================
   ULTRA-PREMIUM DESIGN SYSTEM V2 - FINAL
   Ultimate Glass Morphism & Techno GFX
   ======================================== */

:root {
    --premium-blue: #3b82f6;
    --premium-purple: #8b5cf6;
    --premium-pink: #ec4899;
    --premium-cyan: #06b6d4;
    --premium-green: #10b981;
    --premium-dark: #020617;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(25px);
}

/* Base Dashboard Wrapper */
.dashboard-wrapper {
    background: #020617 !important;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    color: #f1f5f9;
    padding: 2rem 0;
}

/* Background GFX System */
.gfx-mesh {
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 60%);
    animation: meshFlow 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshFlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.2) translate(5%, 5%); }
}

.gfx-stars {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
    animation: starsPulse 4s ease-in-out infinite alternate;
}

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

.gfx-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.03), transparent);
    animation: scannerMove 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes scannerMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(1000%); }
}

/* Ultra Glass Card System */
.ultra-glass {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) saturate(180%) !important;
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.ultra-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.ultra-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 2;
}

.ultra-glass:hover::before {
    left: 150%;
}

/* Premium Components */
.premium-header {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.premium-header i {
    color: var(--premium-blue);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    font-size: 1.5rem;
}

.stat-card-premium {
    position: relative;
    padding: 2.5rem;
    height: 100%;
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper i {
    font-size: 1.6rem;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Premium Table Ultra */
.table-ultra {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: -12px;
}

.table-ultra thead th {
    background: transparent;
    border: none;
    color: #64748b;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 1.5rem;
}

.table-ultra tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.table-ultra tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01) translateX(5px);
}

.table-ultra td {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.table-ultra tr td:first-child { 
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-top-left-radius: 16px; 
    border-bottom-left-radius: 16px; 
}

.table-ultra tr td:last-child { 
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top-right-radius: 16px; 
    border-bottom-right-radius: 16px; 
}

/* Payout Cards Evolution */
.payout-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.payout-card-premium:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.payout-card-premium .payout-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
    color: #94a3b8;
}

.payout-card-premium .payout-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: block;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* DJ Avatar Glow */
.dj-avatar-glow {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

/* Header Banner */
.header-banner {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(168, 85, 247, 0.1) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-radius: 28px;
}

.header-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Color Utilities */
.text-cyan { color: #22d3ee; }
.text-blue { color: #60a5fa; }
.text-green { color: #34d399; }
.text-purple { color: #a78bfa; }

.bg-blue-glow { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-green-glow { background: linear-gradient(135deg, #10b981, #059669); }
.bg-purple-glow { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-cyan-glow { background: linear-gradient(135deg, #06b6d4, #0891b2); }

/* Border Left Accents */
.border-l-blue { border-left: 4px solid #3b82f6 !important; }
.border-l-green { border-left: 4px solid #10b981 !important; }
.border-l-purple { border-left: 4px solid #8b5cf6 !important; }
.border-l-cyan { border-left: 4px solid #06b6d4 !important; }

/* Typography */
.text-orbitron {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* DJ Link Styles - Clickable Artist Names */
.track-artist .dj-link,
.card-info .dj-link,
.track-list-artist .dj-link,
a.dj-link {
    color: #00d4ff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid transparent !important;
    display: inline !important;
}

.track-artist .dj-link:hover,
.card-info .dj-link:hover,
.track-list-artist .dj-link:hover,
a.dj-link:hover {
    color: #00a8cc !important;
    border-bottom-color: #00d4ff !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5) !important;
    text-decoration: underline !important;
}

/* Debug: Make all artist links visible */
.track-artist a {
    color: #00d4ff !important;
    font-weight: 500 !important;
}

/* ========================================
   ULTRA-PREMIUM DESIGN SYSTEM V2
   Ultimate Glass Morphism & Techno GFX
   ======================================== */

:root {
    --premium-blue: #3b82f6;
    --premium-purple: #8b5cf6;
    --premium-pink: #ec4899;
    --premium-cyan: #06b6d4;
    --premium-green: #10b981;
    --premium-dark: #020617;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(25px);
}

/* Base Wrapper */
.dashboard-wrapper {
    background: #020617 !important;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    color: #f1f5f9;
    padding: 2rem 0;
}

/* Background GFX Elements */
.gfx-mesh {
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 60%);
    animation: meshFlow 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshFlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.2) translate(5%, 5%); }
}

.gfx-stars {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
    animation: starsPulse 4s ease-in-out infinite alternate;
}

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

.gfx-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.03), transparent);
    animation: scannerMove 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes scannerMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(1000%); }
}

/* Ultra Glass Card System */
.ultra-glass {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) saturate(180%) !important;
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.ultra-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.ultra-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 2;
}

.ultra-glass:hover::before {
    left: 150%;
}

/* Premium Components */
.premium-header {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.premium-header i {
    color: var(--premium-blue);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    font-size: 1.5rem;
}

.stat-card-premium {
    position: relative;
    padding: 2.5rem;
    height: 100%;
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper i {
    font-size: 1.6rem;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Premium Table Ultra */
.table-ultra {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: -12px;
}

.table-ultra thead th {
    background: transparent;
    border: none;
    color: #64748b;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 1.5rem;
}

.table-ultra tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.table-ultra tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01) translateX(5px);
}

.table-ultra td {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.table-ultra tr td:first-child { 
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-top-left-radius: 16px; 
    border-bottom-left-radius: 16px; 
}

.table-ultra tr td:last-child { 
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top-right-radius: 16px; 
    border-bottom-right-radius: 16px; 
}

/* Payout Cards Evolution */
.payout-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Premium Header Banner */
.header-banner {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(168, 85, 247, 0.1) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-radius: 28px;
}

.header-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* DJ Avatar Glow */
.dj-avatar-glow {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

/* Premium Stat Cards */
.stat-card-v2 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-color), 
        var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-v2:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    border-radius: inherit;
}

.bg-blue-glow { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-green-glow { background: linear-gradient(135deg, #10b981, #059669); }
.bg-purple-glow { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-cyan-glow { background: linear-gradient(135deg, #06b6d4, #0891b2); }

/* Border Left Accents */
.border-l-blue { border-left: 4px solid #3b82f6 !important; }
.border-l-green { border-left: 4px solid #10b981 !important; }
.border-l-purple { border-left: 4px solid #8b5cf6 !important; }
.border-l-cyan { border-left: 4px solid #06b6d4 !important; }

/* Active Glow Effect */
.active-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(16, 185, 129, 0.3);
    }
    50% { 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(16, 185, 129, 0.5);
    }
}

/* Premium Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bg-blue-soft { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1)); 
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.bg-green-soft { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1)); 
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.bg-purple-soft { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1)); 
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.bg-cyan-soft { 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)); 
    color: #22d3ee;
    border-color: rgba(6, 182, 212, 0.3);
}

/* Premium Form Elements */
.glass-form-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-select {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.glass-select:focus {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    outline: none;
}

/* Premium Payout Cards Evolution */
.payout-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.payout-card-premium:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.payout-card-premium .payout-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.payout-card-premium .payout-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: block;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.payout-card-premium .progress {
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.payout-card-premium .progress-bar {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Premium Alert Evolution */
.premium-alert {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    color: #60a5fa;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.premium-alert i {
    font-size: 1.4rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.premium-alert p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Premium Chart Container */
.chart-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Premium Table Styles */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: -12px;
}

.premium-table thead th {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1rem 1.5rem;
}

.premium-table tbody tr {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.premium-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.01) translateY(-2px);
}

.premium-table tbody td {
    padding: 1.2rem 1.5rem;
    border: none;
    color: #e2e8f0;
}

.premium-table tbody tr td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.premium-table tbody tr td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: white;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-premium::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;
}

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

.btn-premium:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(168, 85, 247, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Text Gradients */
.text-gradient-blue-purple {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan { color: #22d3ee; }
.text-blue { color: #60a5fa; }
.text-green { color: #34d399; }
.text-purple { color: #a78bfa; }

/* Typography */
.text-orbitron {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-wrapper {
        padding: 1rem 0;
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
        max-width: 100vw;
    }
    
    .glass-card {
        border-radius: 16px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .stat-card-v2 {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .header-banner {
        padding: 2rem 1.5rem !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dj-avatar-glow {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .chart-container {
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        overflow-x: auto;
    }
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .premium-table {
        min-width: 600px;
    }
}

/* Container Fixes */
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.col-xl-3, .col-xl-6, .col-lg-4, .col-lg-8, .col-md-6, .col-12 {
    position: relative;
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Column Sizes */
.col-xl-3 { flex: 0 0 25%; max-width: 25%; }
.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 1199.98px) {
    .col-xl-3, .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 991.98px) {
    .col-lg-4, .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 767.98px) {
    .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .row { margin-right: -1rem; margin-left: -1rem; }
    .col-xl-3, .col-xl-6, .col-lg-4, .col-lg-8, .col-md-6, .col-12 {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .container-fluid { padding-left: 1rem; padding-right: 1rem; }
}

/* Table responsive fixes */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.premium-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

/* Chart container fixes */
.chart-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.chart-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Product Icon Styles */
.product-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-icon-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    border-radius: inherit;
}

/* Custom Progress Bars */
.progress {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Staggered animations for dashboard elements */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: slideInUp;
}

.animate__fadeInUp {
    animation-name: slideInUp;
}

.animate__fadeInLeft {
    animation-name: slideInLeft;
}

.animate__fadeInRight {
    animation-name: slideInRight;
}

/* Premium hover effects */
.glass-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card:hover {
    transform: translateY(-5px) rotateX(2deg);
}

/* Enhanced shadows and glows */
.stat-card-v2:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(59, 130, 246, 0.3);
}

/* Premium loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ========================================
   GFX BACKGROUND SYSTEM
   Layered Animated Effects
   ======================================== */

body {
    background: #000000 !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    body {
        background-attachment: scroll !important;
    }

    .glass-card,
    .hero-section {
        backdrop-filter: none;
    }

    .glass-card {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .bg-gfx-elements::after,
    .bg-gfx-elements::before,
    .bg-gfx-grid,
    .gfx-stars,
    .gfx-scanner,
    .gfx-cursor-glow,
    .gfx-blob {
        animation: none !important;
        filter: none !important;
        transform: none !important;
    }
}

/* Apply Orbitron font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Background GFX Container */
.bg-gfx-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: #050a1f;
}

/* Layer 0: Glowing Wooshing Stars */
.bg-gfx-elements::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: wooshStars 15s linear infinite;
    opacity: 0.5;
}

@keyframes wooshStars {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-100px, -100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Layer 1: Mesh Gradient */
.bg-gfx-elements::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    animation: meshGradient 20s ease-in-out infinite alternate;
    filter: blur(60px);
}

/* Layer 2: Floating Blobs */
.gfx-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 30s infinite alternate;
    mix-blend-mode: screen;
    z-index: 0;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-duration: 25s;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-duration: 35s;
    animation-delay: -5s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation-duration: 45s;
    animation-delay: -10s;
}

/* Layer 3: Digital Noise */
.bg-gfx-elements::after {
    content: '';
    position: absolute;
    inset: -100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.035;
    mix-blend-mode: overlay;
    animation: noiseAnim 0.2s steps(2) infinite;
    pointer-events: none;
    z-index: 1;
}

/* Layer 4: 3D Perspective Grid */
.bg-gfx-grid {
    position: absolute;
    inset: -100px;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
    transform: perspective(1000px) rotateX(60deg) translateY(-100px);
    animation: gridMove 15s linear infinite;
    z-index: 2;
}

/* Layer 5: Glowing Stars/Points */
.gfx-stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
    background-size: 100px 100px;
    animation: starsPulse 4s ease-in-out infinite alternate;
    z-index: 2;
}

/* Layer 6: Scanner Line */
.gfx-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(59, 130, 246, 0.04) 50%,
        transparent 100%
    );
    animation: scanner 12s linear infinite;
    z-index: 3;
    pointer-events: none;
}

/* Layer 7: Tech Circles */
.gfx-tech-circle {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.tech-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    right: -200px;
    border-width: 2px;
    border-style: dashed;
    animation: rotateTech 60s linear infinite;
}

.tech-2 {
    width: 1000px;
    height: 1000px;
    bottom: -300px;
    left: -300px;
    border-width: 1px;
    border-style: solid;
    opacity: 0.5;
    animation: rotateTech 80s linear infinite reverse;
}

@keyframes rotateTech {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Layer 8: Interactive Cursor Glow */
.gfx-cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: screen;
}

/* Layer 8: Vignette Overlay */
.gfx-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Animations */
@keyframes cosmicFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translate(100px, -100px) scale(0.5); opacity: 0; }
}

@keyframes noiseAnim {
    0% { transform: translate(0,0); }
    10% { transform: translate(-1%,-1%); }
    20% { transform: translate(-2%,1%); }
    30% { transform: translate(1%,-2%); }
    40% { transform: translate(-1%,3%); }
    50% { transform: translate(-2%,1%); }
    60% { transform: translate(3%,0); }
    70% { transform: translate(0,2%); }
    80% { transform: translate(-3%,0); }
    90% { transform: translate(2%,1%); }
    100% { transform: translate(1%,0); }
}

@keyframes meshGradient {
    0% { transform: scale(1) rotate(0deg) translate(0, 0); }
    50% { transform: scale(1.1) rotate(3deg) translate(2%, 2%); }
    100% { transform: scale(1) rotate(0deg) translate(0, 0); }
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(10% , 15%) scale(1.2) rotate(90deg); }
    66% { transform: translate(-10%, 10%) scale(0.8) rotate(180deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

@keyframes starsPulse {
    from { opacity: 0.2; transform: scale(1); }
    to { opacity: 0.5; transform: scale(1.05); }
}

@keyframes scanner {
    0% { transform: translateY(-250px); }
    100% { transform: translateY(100vh); }
}

/* Glass Card Enhanced Shimmer */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.02) 55%,
        transparent 100%
    );
    transform: rotate(-45deg);
    animation: cardShimmer 8s infinite;
    pointer-events: none;
}

@keyframes cardShimmer {
    0% { transform: translateX(-100%) rotate(-45deg); }
    25%, 100% { transform: translateX(100%) rotate(-45deg); }
}

/* Button Glitch Animations */
.btn-primary:hover, .btn-add-cart:hover, .nav-link-top.active:hover {
    animation: btnGlitch 0.3s ease-in-out infinite alternate;
}

@keyframes btnGlitch {
    0% { transform: translateY(-3px) skew(0); }
    20% { transform: translateY(-3px) skew(1deg); filter: brightness(1.2) hue-rotate(10deg); }
    40% { transform: translateY(-3px) skew(-1deg); filter: brightness(1.1) hue-rotate(-10deg); }
    60% { transform: translateY(-3px) skew(0); filter: brightness(1.3); }
    100% { transform: translateY(-3px) skew(0); }
}

/* Override CSS Variables for Dark Blue Theme */
:root {
    /* Dark Ocean Palette */
    --bg-deep: #0f172a;
    --bg-dark: #1e293b;
    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(59, 130, 246, 0.2);
    --glass-blur: blur(16px);
    
    /* Dark Blue Colors */
    --primary-color: #3b82f6; /* Bright Blue */
    --primary-rgb: 59, 130, 246;
    --secondary-color: #2563eb; /* Ocean Blue */
    --accent-color: #8b5cf6; /* Purple Accent */
    --text-color: #ffffff; /* Pure White */
    --text-dim: rgba(255, 255, 255, 0.8); /* Dim White */
}

/* Glass Card Utility Class */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* Hero Section */
.hero-section {
    margin: 2rem 0;
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: var(--bg-overlay);
    animation: auroraFloat 25s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
    position: relative;
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite alternate, heroGlitch 10s infinite;
}

@keyframes heroGlitch {
    0%, 90%, 100% { transform: skew(0); }
    91% { transform: skew(2deg); filter: hue-rotate(90deg); }
    92% { transform: skew(-2deg); filter: hue-rotate(-90deg); }
    93% { transform: skew(0); filter: hue-rotate(0); }
    94% { transform: skew(5deg); opacity: 0.8; }
    95% { transform: skew(0); opacity: 1; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-dim) !important;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* View Switcher */
.view-switcher {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 0.5rem;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.switch-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dim) !important;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

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

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

.switch-btn:hover {
    color: var(--text-color);
    transform: translateY(-1px);
}

.switch-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
    transform: scale(1.05);
}

/* Filters Bar */
.filters-bar {
    margin: 2rem 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.filter-form {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.1rem;
}

.filter-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-color) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-control::placeholder {
    color: var(--text-dim);
}

.filter-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
}

.filter-control.select-control {
    padding-left: 1rem;
}

.filter-group {
    min-width: 180px;
}

.filter-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.filter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 2rem 1rem;
}

/* Track Cards */
.track-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.track-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--dynamic-border-color, var(--primary-color)) !important;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dynamic-gradient-start, var(--primary-color)), var(--dynamic-gradient-middle, var(--secondary-color)), var(--dynamic-gradient-end, var(--accent-color)));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.track-card:hover::before {
    transform: scaleX(1);
}

.card-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

        .track-card:hover .card-art img {
            transform: scale(1.1);
        }

        .art-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
            gap: 1.5rem;
        }

        .track-card:hover .art-overlay {
            opacity: 1;
        }

/* 
   ULTRA-PREMIUM BUTTONS 
*/

/* Play Button */
.play-trigger {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: rgba(59, 130, 246, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3) !important;
    position: relative !important;
    overflow: visible !important;
}

.play-trigger i {
    font-size: 2rem !important;
    margin-left: 5px !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) !important;
}

.play-trigger::after {
    content: '' !important;
    position: absolute !important;
    inset: -10px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(59, 130, 246, 0.5) !important;
    animation: playPulse 2s infinite !important;
    pointer-events: none !important;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.play-trigger:hover {
    transform: scale(1.1) !important;
    background: rgba(59, 130, 246, 0.4) !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.6) !important;
}

/* View Details Button */
.view-link {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    padding: 0.8rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.view-link:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.4) !important;
    border-color: #ffffff !important;
}

/* Add to Cart Button */
.btn-add-cart {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-color), 0.05) 100%);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
}

/* Buy Pack Button */
.pack-btn {
    background: linear-gradient(135deg, rgba(var(--secondary-color), 0.1) 0%, rgba(var(--accent-color), 0.05) 100%);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(var(--secondary-color), 0.3);
}

.pack-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--secondary-color), 0.5);
}

.pack-btn.in-cart {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    border-color: #10b981 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.pack-btn.in-cart .btn-text,
.pack-btn.in-cart span,
.pack-btn.in-cart i {
    color: white !important;
}

.btn.btn-add-cart.pack-btn.in-cart .btn-text,
.btn.btn-add-cart.pack-btn.in-cart span {
    color: white !important;
}

.card-info {
    padding: 2rem;
}

.info-main {
    margin-bottom: 1.5rem;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-color) !important;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.track-artist {
    color: var(--text-dim) !important;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* 
   FORCE ALL PRICES TO PURE WHITE 
   This overrides all previous price color definitions 
*/
.track-price, 
.track-price.highlight, 
.price-value, 
.price-tag, 
.price-tag *,
.price-tag .currency, 
.price-tag .amount, 
.track-price-mini,
.summary-row.total span:last-child,
.order-total,
.item-price,
.price-section *,
.original-price span {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.original-price span:first-child {
    text-decoration: line-through !important;
    opacity: 0.6 !important;
}

.genre-tag {
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.genre-tag:hover {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, #a855f7 0%, #60a5fa 100%);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.preview-tag {
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.preview-tag i {
    font-size: 0.65rem;
    color: #ffffff !important;
}

.preview-tag:hover {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, #60a5fa 0%, #5eead4 100%);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
}

.preview-available {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.preview-available i {
    color: #3b82f6;
    font-size: 0.65rem;
}

.preview-available:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

.save-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c42 100%);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(var(--accent-color), 0.4);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-dim) !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.6;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Toast Notification */
.toast-notify {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-color);
    z-index: 2000;
    animation: slideInBounce 0.5s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* Animations */
@keyframes auroraFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translate(50px, -30px) rotate(90deg) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translate(-30px, 50px) rotate(180deg) scale(0.9); 
        opacity: 0.4;
    }
    75% { 
        transform: translate(30px, 30px) rotate(270deg) scale(1.05); 
        opacity: 0.6;
    }
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(var(--secondary-color), 0.5)); }
}

@keyframes slideInBounce {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateX(5px) scale(0.95);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        margin: 1rem 0;
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        margin: 1rem;
        gap: 2rem;
    }
    
    .toast-notify {
        right: 1rem;
        left: 1rem;
    }
    
    .track-card {
        border-radius: 16px;
    }
    
    .card-info {
        padding: 1.5rem;
    }
}

.logout-link:hover {
    color: #ff4b2b !important;
    background: rgba(255, 75, 43, 0.1) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Global Sticky Music Player (from footer.php) */
.sticky-player {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 999;
    padding: 0.8rem 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none; /* Hidden by default until track played */
    opacity: 0;
}

.sticky-player.visible {
    display: block;
    opacity: 1;
    animation: playerEntrance 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.sticky-player.minimized {
    height: 60px !important;
    padding: 0.5rem 1rem !important;
    max-width: 320px !important;
    left: auto !important;
    right: 1.5rem !important;
    transform: none !important;
    border-radius: 12px !important;
    bottom: 1.5rem !important;
}

@media (max-width: 768px) {
    .sticky-player.minimized {
        width: calc(100% - 2rem) !important;
        max-width: none !important;
        left: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
        transform: none !important;
    }
}

@keyframes playerEntrance {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Entrance animation for minimized state needs different transform */
.sticky-player.minimized.visible {
    animation: playerEntranceMinimized 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes playerEntranceMinimized {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.player-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.player-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.track-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.player-title {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.player-controls-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 2;
}

.main-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.player-btn.toggle-play {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: black;
    border-radius: 50%;
    font-size: 1rem;
}

.player-btn.toggle-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.time {
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    opacity: 0.5;
    min-width: 35px;
}

.progress-bar-wrapper {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--player-primary-color, var(--primary-color));
    border-radius: 10px;
    width: 0%;
    position: relative;
}

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

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

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

.volume-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.volume-container:hover { opacity: 1; }

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.player-btn-close {
    background: rgba(255,255,255,0.05);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.player-btn-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.player-btn-action {
    background: rgba(255,255,255,0.05);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.player-btn-action:hover {
    background: rgba(255,255,255,0.1);
    color: var(--player-primary-color, var(--primary-color));
}

/* Minimized Player State */
.sticky-player.minimized {
    height: 60px !important;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-player.minimized .player-container {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-player.minimized .player-track-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sticky-player.minimized .track-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-player.minimized .player-controls-main {
    display: none !important;
}

.sticky-player.minimized .player-controls-extra {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-player.minimized .volume-container {
    display: none !important;
}

.sticky-player.minimized .player-cover {
    width: 36px !important;
    height: 36px !important;
}

.sticky-player.minimized .player-title {
    font-size: 0.85rem !important;
    font-weight: 600;
}

.sticky-player.minimized .player-artist {
    font-size: 0.75rem !important;
    opacity: 0.6;
}

.sticky-player.minimized #player-minimize {
    color: var(--player-primary-color, var(--primary-color));
}

.sticky-player.minimized #player-minimize:hover {
    color: var(--player-primary-color, var(--primary-color));
}

/* Minimize button active state */
#player-minimize.active {
    color: var(--player-primary-color, var(--primary-color));
    background: rgba(var(--player-primary-rgb, var(--primary-rgb)), 0.1);
}

@media (max-width: 768px) {
    /* Ensure body has padding for sticky player */
    body {
        padding-bottom: 80px !important;
    }
    
    /* Sticky player mobile styles */
    .sticky-player { 
        width: 100% !important; 
        bottom: 0 !important; 
        left: 0 !important; 
        transform: none !important; 
        border-radius: 20px 20px 0 0 !important; 
        padding: 0.8rem 1rem !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        z-index: 9999 !important;
        max-width: none !important;
        margin: 0 !important;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.3) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .sticky-player .player-container {
        padding: 0 !important;
        margin: 0 !important;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .sticky-player .player-track-info {
        flex: 1;
        min-width: 0;
        margin-right: 0.5rem;
    }
    
    .sticky-player .player-controls-main {
        flex: 0 0 auto;
        margin: 0 0.5rem;
    }
    
    .sticky-player .player-controls-extra {
        flex: 0 0 auto;
        gap: 0.5rem;
    }
    
    .sticky-player .progress-container {
        display: none !important;
    }
    
    .sticky-player .volume-container {
        display: none !important;
    }
    
    .sticky-player #player-expand {
        display: none !important;
    }
    
    .sticky-player .player-title {
        font-size: 0.9rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sticky-player .player-artist {
        font-size: 0.8rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sticky-player .player-cover {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 3rem !important;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(255,255,255,0.02)) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.1) !important;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; letter-spacing: -1px; }
.hero-content p { font-size: 1.2rem; opacity: 0.7; max-width: 600px; margin: 0 auto 2.5rem; }

.view-switcher {
    display: inline-flex;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.switch-btn {
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.switch-btn.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.switch-btn:not(.active):hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Filters */
.filters-bar {
    padding: 1.5rem 2rem !important;
    margin-bottom: 3rem;
}

.filter-form {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    flex-grow: 1;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.filter-control {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.search-box .filter-control { padding-left: 3rem; }

.filter-control:focus {
    border-color: var(--primary-color);
    background: rgba(0,0,0,0.3);
}

.select-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.2rem;
}

.filter-submit { min-width: 180px; }

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.track-card {
    padding: 0 !important;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.track-card:hover {
    transform: translateY(-10px);
    border: 2px solid var(--dynamic-border-color, var(--primary-color)) !important;
}

.card-art {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

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

.track-card:hover .card-art img { transform: scale(1.1); }

.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.track-card:hover .art-overlay { opacity: 1; }

/* Conflicting styles removed to allow premium versions above to take effect */
/* .play-trigger and .view-link are now styled in the Tracks section */


.preview-unavailable {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.card-info {
    padding: 1.5rem;
}

.info-main { margin-bottom: 1.2rem; }
.track-title { font-size: 0.95rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Orbitron', sans-serif; }
.track-artist { opacity: 0.5; font-size: 0.85rem; font-family: 'Orbitron', sans-serif; }

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.track-price { font-size: 1.3rem; font-weight: 800; color: #fff; }
.track-price.highlight { color: #ffffff !important; }

.pack-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #a855f7;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

 .track-badge {
     position: absolute;
     top: 1.5rem;
     right: 1.5rem;
     background: #3b82f6;
     color: white;
     font-size: 0.7rem;
     font-weight: 900;
     padding: 4px 10px;
     border-radius: 4px;
     letter-spacing: 1px;
 }

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 5rem 2rem !important;
}

.empty-state i { font-size: 4rem; opacity: 0.1; margin-bottom: 2rem; display: block; }
.empty-state p { font-size: 1.2rem; opacity: 0.5; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .filter-form { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
    .filter-submit { width: 100%; }
}

.toast-notify {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem !important;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Detail Pages (Product & Pack) */
.product-detail-container { max-width: 1200px; margin: 2rem auto; }
.product-main-grid { display: grid; grid-template-columns: 450px 1fr; gap: 4rem; align-items: start; }

.art-card { padding: 0 !important; overflow: hidden; position: relative; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); }
.main-cover { width: 100%; display: block; transition: transform 0.5s ease; }
.art-card:hover .main-cover { transform: scale(1.05); }
.art-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-shadow: inset 0 0 100px rgba(0,0,0,0.5); pointer-events: none; }

.breadcrumb { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; opacity: 0.5; margin-bottom: 1.5rem; font-weight: 600; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-color); }

.track-title-lg { font-size: 3.5rem; margin-bottom: 0.5rem; letter-spacing: -1.5px; line-height: 1.1; font-family: 'Orbitron', sans-serif; }
.track-artist-lg { font-size: 1.5rem; opacity: 0.7; font-weight: 500; margin-bottom: 2rem; font-family: 'Orbitron', sans-serif; }
.track-artist-lg span { color: var(--primary-color); font-weight: 700; }

.meta-badges { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.badge-item { background: rgba(255,255,255,0.05); padding: 0.6rem 1.2rem; border-radius: 100px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 0.6rem; }
.badge-item i { color: var(--primary-color); }

.description-box { font-size: 1.15rem; line-height: 1.8; opacity: 0.8; margin-bottom: 3rem; max-width: 700px; }

.preview-player-card { padding: 1.5rem !important; margin-bottom: 2rem; border-color: rgba(var(--primary-rgb), 0.2); }
.player-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.player-header i { color: var(--primary-color); font-size: 1.2rem; }

.purchase-card { padding: 2.5rem !important; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border: 1px solid rgba(var(--primary-rgb), 0.3) !important; background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(255,255,255,0.02)) !important; position: relative; flex-wrap: wrap; }
.price-tag { display: flex; align-items: flex-start; gap: 0.2rem; color: #ffffff !important; }
.price-tag .currency { font-size: 1.5rem; font-weight: 800; color: #ffffff !important; margin-top: 0.5rem; }
.price-tag .amount { font-size: 3.5rem; font-weight: 900; line-height: 1; color: #ffffff !important; }

.btn-purchase { padding: 1.2rem 3rem; font-size: 1.1rem; border-radius: 18px; gap: 1rem; }
.license-notice { width: 100%; margin-top: 1rem; font-size: 0.85rem; opacity: 0.4; display: flex; align-items: center; gap: 0.5rem; }

/* Pack Specific Details */
.pack-floating-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #a855f7;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    z-index: 2;
}

.savings-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #22c55e;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    z-index: 2;
}

.value-highlight {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tracks-list-card { padding: 2rem !important; margin-bottom: 2.5rem; border-color: rgba(168, 85, 247, 0.2); }
.tracks-list-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.6; display: flex; align-items: center; gap: 0.8rem; }
.tracks-list-title i { color: #a855f7; }

.combined-value-mini { font-size: 0.85rem; font-weight: 600; opacity: 0.7; }

.bundle-tracks { display: flex; flex-direction: column; gap: 0.8rem; }
.bundle-track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
}
.bundle-track-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(168, 85, 247, 0.3); }

.track-info-mini { display: flex; flex-direction: column; gap: 0.2rem; }
.track-name { font-weight: 700; color: #fff; }
.track-artist-mini { font-size: 0.8rem; opacity: 0.5; }
.track-price-mini { font-weight: 700; color: #ffffff !important; font-size: 0.9rem; }

.mini-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-play-btn:hover { background: #a855f7; transform: scale(1.1); }

.price-section { display: flex; flex-direction: column; gap: 0.5rem; }
.original-price { display: flex; flex-direction: column; font-size: 0.9rem; font-weight: 600; }
.original-price span:first-child { text-decoration: line-through; opacity: 0.4; }
.savings-info { color: #4ade80; margin-top: 0.2rem; }

.btn-purchase.pack-highlight { background: #a855f7; color: white; box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4); }
.btn-purchase.pack-highlight:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5); filter: brightness(1.1); }

@media (max-width: 1024px) {
    .product-main-grid { grid-template-columns: 1fr; gap: 3rem; }
    .art-section { max-width: 500px; margin: 0 auto; }
    .track-title-lg { font-size: 2.5rem; }
    .purchase-card { flex-direction: column; text-align: center; }
    .price-tag { justify-content: center; }
}

/* Cart Page */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.4;
}

.step.active { opacity: 1; }

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.step.active .step-num {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.step-label { font-weight: 700; font-size: 0.9rem; }

.step-line {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.cart-container { padding: 3rem !important; }

.cart-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.cart-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cart-subtitle { opacity: 0.5; font-size: 1rem; }

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-icon {
    font-size: 4rem;
    opacity: 0.1;
    margin-bottom: 2rem;
}

.empty-cart h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.empty-cart p { opacity: 0.6; margin-bottom: 2.5rem; }

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.cart-item-row {
    padding: 1.2rem !important;
    display: grid;
    grid-template-columns: 100px 1fr auto 80px;
    gap: 2rem;
    align-items: center;
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    transition: all 0.3s ease;
}

.cart-item-row:hover {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(var(--primary-rgb), 0.2) !important;
    transform: translateX(5px);
}

.item-art {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

.item-type-badge {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}

.item-type-badge.pack { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.item-type-badge.product { background: rgba(var(--primary-rgb), 0.2); color: var(--primary-color); }

.item-title { font-size: 1.25rem; margin: 0.4rem 0 0.2rem; font-weight: 700; color: #fff; }
.item-meta { opacity: 0.5; font-size: 0.95rem; }

.item-price-col { text-align: right; }
.price-label { display: block; font-size: 0.75rem; text-transform: uppercase; opacity: 0.4; letter-spacing: 1px; margin-bottom: 0.3rem; }
.price-value { font-size: 1.4rem; font-weight: 800; color: #fff; }

.btn-remove-item {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove-item:hover { background: #f87171; color: #fff; transform: scale(1.1) rotate(5deg); }

.cart-summary-section {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.summary-details { flex-grow: 1; max-width: 400px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    opacity: 0.7;
}

.summary-row.total {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 1;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.btn-checkout {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    border-radius: 16px;
    gap: 1rem;
}

.login-required-msg {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #facc15;
}

.login-required-msg a { color: #fff; font-weight: 700; text-decoration: underline; }

@media (max-width: 900px) {
    .cart-item-row { grid-template-columns: 80px 1fr auto; gap: 1rem; }
    .item-actions { grid-column: span 3; display: flex; justify-content: flex-end; }
    .cart-summary-section { flex-direction: column; gap: 2rem; align-items: stretch; }
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.section-desc { opacity: 0.6; font-size: 1rem; margin-bottom: 2.5rem; }

.alert-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.alert-icon { font-size: 1.5rem; color: #facc15; }
.alert-content h4 { margin-bottom: 0.5rem; color: #fff; }
.alert-content p { opacity: 0.7; font-size: 0.9rem; }

.payment-methods { display: flex; flex-direction: column; gap: 1.5rem; }

.payment-method {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.payment-method.active { border-color: var(--primary-color); background: rgba(var(--primary-rgb), 0.05); }

.method-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--glass-border);
}

.method-header i { color: var(--primary-color); font-size: 1.4rem; }

.method-body { padding: 2rem; }

.payment-loading {
    text-align: center;
    padding: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.sticky-sidebar { position: sticky; top: 6rem; padding: 2.5rem !important; overflow: visible; z-index: 1; }

.checkout-sidebar .glass-card.sticky-sidebar {
    overflow: visible !important;
}

.sticky-sidebar::after {
    z-index: 0;
}

.sticky-sidebar > * {
    position: relative;
    z-index: 1;
}

.summary-items {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 360px;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-right: 0.5rem;
}

.checkout-sidebar .glass-card.sticky-sidebar .summary-items {
    height: 360px !important;
    max-height: calc(100vh - 260px) !important;
    overflow-y: scroll !important;
}

.sticky-sidebar .summary-items {
    position: relative;
    z-index: 1;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-item-info { display: flex; flex-direction: column; gap: 0.2rem; }
.summary-item-info .item-title { font-weight: 700; color: #fff; font-size: 0.95rem; }
.summary-item-info .item-artist { font-size: 0.8rem; opacity: 0.5; }
.summary-item .item-price { font-weight: 700; color: #fff; }

.summary-footer { display: flex; flex-direction: column; gap: 1rem; }

.secure-notice {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; }
}

/* Orders Page */
.portal-container { padding: 3rem !important; }
.portal-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.section-title { font-size: 2rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 1rem; }
.section-title i { color: var(--primary-color); }
.section-desc { opacity: 0.6; font-size: 1rem; }

.table-responsive { overflow-x: auto; }

.portal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.portal-table th {
    text-align: left;
    padding: 0 1.5rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    font-weight: 700;
}

.portal-table td {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.portal-table tr td:first-child { 
    border-radius: 12px 0 0 12px; 
    border-left: 1px solid rgba(255,255,255,0.05);
}
.portal-table tr td:last-child { 
    border-radius: 0 12px 12px 0; 
    border-right: 1px solid rgba(255,255,255,0.05);
}

.order-num { font-weight: 800; color: #fff; font-family: monospace; font-size: 1.1rem; }
.order-total { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; }

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.status-pending { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.status-cancelled { background: rgba(239, 68, 68, 0.15); color: #f87171; }

.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .portal-container { padding: 1.5rem !important; }
}

/* Order Details Page */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.item-art {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

.preview-play-overlay-mini {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.item-art:hover .preview-play-overlay-mini {
    display: flex;
}

.preview-play-overlay-mini:hover {
    background: rgba(var(--primary-rgb), 0.6);
    color: #000;
}

.item-info { flex-grow: 1; }
.item-type { font-size: 0.6rem; text-transform: uppercase; font-weight: 800; opacity: 0.4; letter-spacing: 1px; }
.item-name { font-size: 1.1rem; margin: 0.2rem 0; color: #fff; }
.item-artist { font-size: 0.85rem; opacity: 0.5; }

.item-price { font-weight: 700; color: #fff; font-size: 1.1rem; }

.order-summary-footer {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
}

.summary-row.total {
    opacity: 1;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.info-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    font-weight: 700;
}

.info-group span { font-weight: 600; color: #fff; }

.status-badge-lg {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(255,255,255,0.02)) !important;
    border-color: rgba(var(--primary-rgb), 0.3) !important;
}

@media (max-width: 768px) {
    .order-details-grid { grid-template-columns: 1fr; }
}

/* Success Page */
.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-card {
    max-width: 550px;
    width: 100%;
    text-align: center;
    padding: 4rem 3rem !important;
    animation: slideUpSuccess 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
}

.success-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    animation: pulse-glow 2s infinite;
}

.success-icon-wrapper i {
    position: relative;
    z-index: 1;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.success-msg {
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.order-id-badge {
    background: rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    border-radius: 100px;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.order-id-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    font-weight: 700;
}

.order-id-badge strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-block { width: 100%; padding: 1.2rem !important; }

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.email-notice {
    font-size: 0.85rem;
    opacity: 0.4;
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 255, 136, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }
}

/* Auth Pages (Login & Register) */
.login-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    max-width: 450px;
    width: 100%;
    padding: 3.5rem 2.5rem !important;
    animation: fadeInSuccess 0.6s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.login-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-header p {
    opacity: 0.5;
    font-size: 0.95rem;
}

.login-form .form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.login-form .form-group label i {
    color: var(--primary-color);
    width: 16px;
}

.btn-login {
    width: 100%;
    padding: 1.1rem !important;
    margin-top: 1rem;
    border-radius: 14px;
    gap: 1rem;
    font-size: 1rem;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    opacity: 0.3;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.alert-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.alert-box.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.alert-box {
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

@keyframes fadeInSuccess {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Track List Row Grid Styles (for index.php list view) */
.track-list-row {
    display: grid;
    grid-template-columns: 83px 1fr auto;
    gap: 0.0rem;
    align-items: center;
    padding: 0.5rem;
}

.track-list-art {
    display: block;
    width: 83px;
    height: 83px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
}

.track-list-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.track-list-meta {
    min-width: 0;
}

.track-list-title {
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-list-artist {
    opacity: 0.75;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-list-price {
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
}

.track-list-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.track-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-icon-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.24);
}

.track-icon-btn.btn-add-cart {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.35);
}

.track-icon-btn.btn-add-cart:hover {
    background: rgba(16, 185, 129, 0.28);
    border-color: rgba(16, 185, 129, 0.5);
}

.track-list-tags {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.track-list-tags .genre-tag {
    font-size: 0.45rem;
    padding: 0.15rem 0.5rem;
    margin-right: 0.5rem;
}

/* Mobile responsive for track list */
@media (max-width: 768px) {
    .track-list-price {
        display: none;
    }

    .track-list-art {
        width: 64px;
        height: 64px;
    }

    .track-list-tags .preview-tag {
        display: none;
    }
}

/* Glitch effect for default images (index.php) */
@keyframes glitchGradient {
    0%, 100% { filter: none; }
    10% { filter: hue-rotate(90deg) saturate(1.5); }
    20% { filter: none; }
    30% { filter: hue-rotate(180deg) saturate(1.3); }
    40% { filter: none; }
    50% { filter: hue-rotate(270deg) saturate(1.6); }
    60% { filter: none; }
    70% { filter: hue-rotate(45deg) saturate(1.4); }
    80% { filter: none; }
    90% { filter: hue-rotate(135deg) saturate(1.5); }
}

.glitch-effect {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glitch-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    animation: glitchGradient 3s infinite;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .glitch-effect img {
        animation: none;
    }
}

/* ========================================
   TABLET RESPONSIVE STYLES (768px - 1024px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    /* Header & Navigation */
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Track Grid - 2 columns for tablets */
    .track-grid,
    .catalog-grid,
    .latest-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    /* Product Detail Page */
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .art-section {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .track-title-lg {
        font-size: 2rem;
    }
    
    /* Filters */
    .filters-container-v2 {
        padding: 0 1rem;
    }
    
    .filters-bar-v2 {
        padding: 1rem;
    }
    
    .filter-main-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .search-wrapper-v2 {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .filter-group {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    /* Cart */
    .cart-item-row {
        grid-template-columns: 100px 1fr auto;
        gap: 1rem;
    }
    
    .cart-summary-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sticky-sidebar {
        position: static;
    }
    
    /* Dashboard */
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    /* Tables */
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Modals */
    .modal-content {
        width: 90%;
        max-width: 600px;
    }
    
    /* Track List View */
    .track-list-item {
        padding: 1rem;
    }
    
    .track-list-meta {
        gap: 0.5rem;
    }
    
    /* Glass Cards */
    .glass-card {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Page Headers */
    .page-header h1,
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    /* DJ Grid */
    .minimal-dj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Admin Tables */
    .admin-table-wrapper {
        overflow-x: auto;
    }
    
    /* Commission Payments */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .user-payment-card {
        padding: 1.25rem;
    }
    
    /* Pack Grid */
    .pack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Profile Page */
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* Order Details */
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ========================================
   SMALL TABLET / LARGE PHONE (600px - 768px)
   ======================================== */

@media (min-width: 600px) and (max-width: 768px) {
    /* Track Grid - 2 columns */
    .track-grid,
    .catalog-grid,
    .latest-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    /* DJ Grid - 2 columns */
    .minimal-dj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Stats Grid - 2 columns */
    .dashboard-stats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Filters */
    .filter-main-row {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}
