/* ========================================
   Modern Profile Page - CSS Styles
   ======================================== */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-hover: #22222e;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.08);
    --success: #3ba55c;
    --warning: #faa61a;
    --danger: #ed4245;
    --discord: #5865F2;
    --roblox: #ff6b6b;
    --github: #f0f6fc;
    --spotify: #1DB954;
    --neon-glow: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px);
}

/* App Container - 3 Column Layout */
.app-container {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    min-height: 100vh;
    gap: 0;
}

/* ========================================
   Sidebar (Left) - Market Data
   ======================================== */
.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header i {
    color: var(--accent-primary);
}

.market-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-section h3 i {
    font-size: 14px;
}

/* Crypto Cards */
.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crypto-item {
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-item:hover {
    background: rgba(26, 26, 36, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.crypto-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.crypto-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.crypto-icon-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.crypto-icon.btc { background: #f7931a; }
.crypto-icon.eth { background: #627eea; }
.crypto-icon.trx { background: #ff060a; }

.crypto-change {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.crypto-change.positive {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.crypto-change.negative {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.crypto-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 8px;
}

.crypto-price {
    display: flex;
    flex-direction: column;
}

.crypto-price .label {
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.crypto-price .value {
    font-weight: 500;
    color: var(--text-secondary);
}

.kimchi-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.kimchi-label {
    font-size: 11px;
    color: var(--text-muted);
}

.kimchi-value {
    font-size: 14px;
    font-weight: 700;
}

.kimchi-value.positive { color: var(--success); }
.kimchi-value.negative { color: var(--danger); }

/* Exchange Rate */
.exchange-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exchange-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.exchange-item:hover {
    background: rgba(26, 26, 36, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.exchange-pair {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.exchange-pair .flag {
    font-size: 16px;
}

.exchange-rate {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* Loading Shimmer */
.loading-shimmer {
    height: 80px;
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   Main Content (Center)
   ======================================== */
.main-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--accent-gradient);
    opacity: 0.8;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.profile-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 1;
}

.avatar-container {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.avatar-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 4;
    pointer-events: none;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.status-indicator {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 5px solid var(--bg-card);
    z-index: 3;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.status-indicator.online { 
    background: var(--success);
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px var(--success),
        0 0 20px rgba(59, 165, 92, 0.5);
}
.status-indicator.idle { 
    background: var(--warning);
    animation: statusPulse 2s ease-in-out infinite;
}
.status-indicator.dnd { 
    background: var(--danger);
    animation: statusPulse 2s ease-in-out infinite;
}
.status-indicator.offline { background: #747f8d; }

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.username {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #7f7f7f, #989898, #cbcbcb, #989898, #7f7f7f);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.status-text {
    font-size: 14px;
    background: linear-gradient(to bottom, #a1a1aa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badges {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge.discord {
    background: rgba(88, 101, 242, 0.2);
    color: var(--discord);
}

.badge.roblox {
    background: rgba(255, 107, 107, 0.2);
    color: var(--roblox);
}

.badge.github {
    background: rgba(240, 246, 252, 0.1);
    color: var(--github);
}

/* Section Headers */
.section-header {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--accent-primary);
    font-size: 16px;
}

/* Activity Section */
.activity-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.activity-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.activity-name {
    font-size: 16px;
    font-weight: 600;
}

.activity-details {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Accounts Section */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 700px) {
    .accounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.account-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(26, 26, 36, 0.7);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.discord-card::before { background: var(--discord); }
.roblox-card::before { background: var(--roblox); }
.github-card::before { background: var(--github); }
.youtube-card::before { background: #FF0000; }

.account-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.discord-card .account-icon {
    background: rgba(88, 101, 242, 0.15);
    color: var(--discord);
}

.youtube-card .account-icon {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
}

.roblox-card .account-icon {
    background: rgba(255, 107, 107, 0.15);
}

.github-card .account-icon {
    background: rgba(240, 246, 252, 0.1);
}

.github-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.github-stats {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.github-stats i {
    color: var(--text-muted);
    margin-right: 4px;
}

.roblox-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.account-info {
    flex: 1;
    min-width: 0;
}

.account-name {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.account-username {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.presence-bar {
    margin-top: 6px;
}

.presence-status {
    font-size: 12px;
    color: var(--text-secondary);
}

.roblox-stats {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.roblox-stats i {
    color: var(--text-muted);
    margin-right: 4px;
}

.external-link {
    color: var(--text-muted);
    font-size: 14px;
}

/* Spotify Section */
.spotify-section {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15), rgba(29, 185, 84, 0.08));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(29, 185, 84, 0.3);
}

.spotify-section .section-header h2 {
    color: var(--spotify);
}

.spotify-section .section-header h2 i {
    color: var(--spotify);
}

.spotify-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.album-art {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.spotify-info {
    flex: 1;
}

.song-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.artist-name {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--spotify);
    border-radius: 2px;
    width: 0%;
    transition: width 1s linear;
}

.hidden {
    display: none !important;
}

/* ========================================
   Info Panel (Right)
   ======================================== */
.info-panel {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.info-card {
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h3 i {
    color: var(--accent-primary);
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.time-display {
    font-size: 28px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(34, 34, 46, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(34, 34, 46, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.08));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .app-container {
        grid-template-columns: 260px 1fr;
    }
    
    .info-panel {
        display: none;
    }
}

@media (max-width: 900px) {
    .app-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        z-index: 1000;
        transition: left 0.3s ease;
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .badges {
        justify-content: center;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 45px rgba(255, 255, 255, 0.3);
    }
}



@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@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 slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}



.crypto-item {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.crypto-item:nth-child(1) { animation-delay: 0.1s; }
.crypto-item:nth-child(2) { animation-delay: 0.2s; }
.crypto-item:nth-child(3) { animation-delay: 0.3s; }

.account-card {
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
}

.account-card:nth-child(1) { animation-delay: 0.1s; }
.account-card:nth-child(2) { animation-delay: 0.2s; }
.account-card:nth-child(3) { animation-delay: 0.3s; }

.info-card {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.hero-section {
    animation: scaleIn 0.6s ease;
}

.activity-card {
    animation: slideInUp 0.5s ease 0.2s forwards;
    opacity: 0;
}

.sidebar {
    animation: slideInLeft 0.4s ease;
}

.info-panel {
    animation: slideInRight 0.4s ease;
}

.crypto-item:hover .crypto-icon,
.account-card:hover .account-icon {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        var(--shadow-lg),
        0 0 30px rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
}

.crypto-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-hover);
}

.exchange-item:hover {
    transform: translateX(4px);
    background: var(--bg-hover);
}

.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.tech-tag {
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}





.spotify-section {
    animation: slideInUp 0.5s ease 0.3s forwards;
    opacity: 0;
}

.album-art {
    transition: transform 0.3s ease;
}

.spotify-card:hover .album-art {
    transform: scale(1.1) rotate(3deg);
}

.progress {
    transition: width 1s linear;
    background: linear-gradient(90deg, var(--spotify), #1ed760);
}
