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

:root {
    --stage-red: #E31E24;
    --stage-dark-red: #B91C22;
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* SVG Icon Styles */
svg {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.menu-icon,
.footer-icon,
.playlist-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.menu-item:hover .menu-icon,
.menu-item.active .menu-icon,
.footer-link:hover .footer-icon,
.playlist-item:hover .playlist-icon {
    color: var(--text-primary);
}

.menu-item.active .menu-icon {
    color: var(--stage-red);
}

.user-menu-item svg {
    margin-right: 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.user-menu-item:hover svg {
    color: var(--text-primary);
}

.icon-btn svg {
    color: var(--text-primary);
}

.user-avatar svg {
    color: var(--text-secondary);
}

/* Player Control Icons */
.control-btn-large svg,
.mini-control-btn svg,
.volume-btn svg {
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.control-btn-large:hover svg,
.mini-control-btn:hover svg,
.volume-btn:hover svg {
    color: var(--stage-red);
    transform: scale(1.1);
}

.play-btn-large svg {
    color: var(--text-primary);
}

.control-btn-large.active svg {
    color: var(--stage-red);
}

.control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Playlist Section Styles */
.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 8px;
}

.playlist-add-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-add-btn:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.playlists-select-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.playlist-select-item {
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.playlist-select-item:hover {
    background: var(--hover-bg);
    transform: translateX(4px);
}

.playlist-select-item svg {
    color: var(--stage-red);
    flex-shrink: 0;
}

.playlist-select-info {
    flex: 1;
}

.playlist-select-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.playlist-select-count {
    color: var(--text-secondary);
    font-size: 0.85em;
}

.song-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-add-to-playlist {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-to-playlist:hover {
    background: var(--hover-bg);
    border-color: var(--stage-red);
    color: var(--stage-red);
}

.btn-add-to-playlist svg {
    width: 16px;
    height: 16px;
}

/* Playlist View Styles */
.playlist-view-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.playlist-header-section {
    margin-bottom: 40px;
}

.playlist-info-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 20px;
}

.playlist-cover {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--stage-red), var(--stage-dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.playlist-cover svg {
    color: rgba(255, 255, 255, 0.9);
}

.playlist-details {
    flex: 1;
}

.playlist-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.playlist-description {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 16px;
}

.playlist-meta {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 24px;
}

.playlist-actions {
    display: flex;
    gap: 12px;
}

.btn-play-all {
    padding: 12px 24px;
    background: var(--stage-red);
    color: white;
    border: none;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-play-all:hover {
    background: var(--stage-dark-red);
    transform: scale(1.05);
}

.btn-secondary {
    padding: 12px 20px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

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

.btn-danger {
    padding: 12px 20px;
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-danger:hover {
    background: rgba(231, 76, 60, 0.1);
}

.playlist-songs-section {
    margin-top: 40px;
}

.playlist-songs-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.playlist-songs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlist-song-item {
    display: grid;
    grid-template-columns: 40px 60px 1fr 120px 100px;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.playlist-song-item:hover {
    background: var(--hover-bg);
}

.playlist-song-number {
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.playlist-song-cover {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
}

.playlist-song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-song-info {
    min-width: 0;
}

.playlist-song-title {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.playlist-song-artist {
    color: var(--text-secondary);
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.playlist-song-language {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.playlist-song-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.empty-playlist {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-playlist p {
    margin-top: 16px;
    font-size: 1.1em;
}

.back-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: var(--hover-bg);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .playlist-info-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .playlist-cover {
        width: 160px;
        height: 160px;
    }

    .playlist-title {
        font-size: 2em;
    }

    .playlist-actions {
        flex-direction: column;
        width: 100%;
    }

    .playlist-actions button {
        width: 100%;
        justify-content: center;
    }

    .playlist-song-item {
        grid-template-columns: 30px 50px 1fr 80px;
        gap: 12px;
        font-size: 0.9em;
    }

    .playlist-song-language {
        display: none;
    }

    /* Top action buttons responsive */
    .top-action-btn span {
        display: none;
    }

    .top-action-btn {
        padding: 8px 12px;
        border-radius: 50%;
    }

    .user-actions {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .search-bar {
        flex: 1;
        max-width: 200px;
    }

    .top-action-btn {
        padding: 6px 10px;
    }
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 200;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.sidebar-menu {
    padding: 12px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.menu-item.active {
    background: var(--hover-bg);
    color: var(--text-primary);
    border-left-color: var(--stage-red);
}

.menu-icon {
    font-size: 1.3em;
    width: 24px;
    text-align: center;
}

.menu-text {
    font-size: 0.95em;
    font-weight: 500;
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

.sidebar-playlists {
    flex: 1;
    padding: 12px 0;
}

.playlist-header {
    padding: 8px 24px;
    font-size: 0.85em;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.playlist-item:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.playlist-icon {
    font-size: 1.2em;
}

.playlist-text {
    font-size: 0.9em;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.footer-link:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.footer-icon {
    font-size: 1.2em;
}

/* Main Content */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
    padding-bottom: 100px;
}

.top-bar {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
    padding: 8px;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    gap: 12px;
}

.search-icon {
    font-size: 1.2em;
    color: var(--text-secondary);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95em;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.user-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
}

.top-action-btn:hover {
    background: var(--hover-bg);
    border-color: var(--stage-red);
    color: var(--stage-red);
    transform: translateY(-2px);
}

.top-action-btn svg {
    color: currentColor;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: none;
    color: var(--text-primary);
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--hover-bg);
}

/* Content Views */
.content-view {
    padding: 24px;
}

/* Old stats styles removed - see enhanced version below */

.section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Songs Grid */
/* Albums Section */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.album-card {
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.album-card:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.album-card-art {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
}

.album-card-art img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-card:hover .album-card-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--stage-red);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.9);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.5);
}

.album-card:hover .album-play-btn {
    transform: scale(1);
}

.album-play-btn:hover {
    background: #d91e24;
    transform: scale(1.1);
}

.album-card-info {
    padding: 16px;
}

.album-card-title {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-card-artist {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8em;
    color: var(--text-tertiary);
}

.album-card-songs {
    font-weight: 600;
}

.album-card-dot {
    font-size: 0.6em;
}

.album-card-language {
    padding: 3px 8px;
    background: rgba(227, 30, 36, 0.15);
    color: var(--stage-red);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85em;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border-radius: 20px;
    padding: 48px 32px;
    margin-bottom: 32px;
    text-align: center;
    border: 1px solid rgba(227, 30, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

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

.welcome-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, var(--stage-red) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Enhanced Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-chip {
    background: var(--bg-elevated);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stage-red);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--stage-red);
}

.stat-chip:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.stat-songs .stat-icon-wrapper {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%);
}

.stat-albums .stat-icon-wrapper {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2) 0%, rgba(30, 136, 229, 0.1) 100%);
}

.stat-plays .stat-icon-wrapper {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.stat-icon-svg {
    width: 28px;
    height: 28px;
}

.stat-songs .stat-icon-svg {
    color: var(--stage-red);
}

.stat-albums .stat-icon-svg {
    color: #1e88e5;
}

.stat-plays .stat-icon-svg {
    color: #4caf50;
}

.stat-chip:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Top 10 / Trending Section */
.top10-section {
    margin-bottom: 48px;
    position: relative;
}

.top10-badge {
    font-size: 2.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2) 0%, rgba(227, 30, 36, 0.2) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 87, 34, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
    }
}

.top10-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.featured-count {
    padding: 4px 12px;
    background: rgba(227, 30, 36, 0.15);
    border-radius: 12px;
    color: var(--stage-red);
    font-weight: 600;
}

.top10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.top10-song-card {
    background: var(--bg-elevated);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.top10-song-card:hover {
    background: var(--bg-secondary);
    border-color: var(--stage-red);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.4);
}

.top10-rank {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    font-weight: 900;
    color: var(--stage-red);
    z-index: 10;
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    line-height: 1;
    -webkit-text-stroke: 4px white;
    text-stroke: 4px white;
    paint-order: stroke fill;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
    opacity: 1;
    transition: all 0.3s;
    pointer-events: none;
}

.top10-song-card:hover .top10-rank {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.top10-rank.featured {
    color: #ff9800;
    -webkit-text-stroke: 4px white;
}

/* All numbers same color and style */

.top10-song-card.featured {
    border-color: rgba(255, 152, 0, 0.4);
}

/* Featured badge removed - keeping it simple */

.top10-song-art {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.top10-song-art img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.top10-song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.top10-song-card:hover .top10-song-overlay {
    opacity: 1;
}

.top10-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--stage-red) 0%, #d91e24 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.9);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.5);
}

.top10-song-card:hover .top10-play-btn {
    transform: scale(1);
}

.top10-song-info {
    padding: 16px;
}

.top10-song-title {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top10-song-artist {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top10-song-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8em;
    color: var(--text-tertiary);
}

.top10-play-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top10-play-count::before {
    content: '▶️';
    font-size: 0.9em;
}

/* Enhanced Player Styles */
.player-view {
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.05) 0%, var(--bg-primary) 30%) !important;
}

.album-art-large {
    position: relative;
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.4), 0 0 80px rgba(227, 30, 36, 0.2) !important;
    animation: albumPulse 3s ease-in-out infinite;
}

@keyframes albumPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(227, 30, 36, 0.4), 0 0 80px rgba(227, 30, 36, 0.2);
    }
    50% {
        box-shadow: 0 25px 70px rgba(227, 30, 36, 0.5), 0 0 100px rgba(227, 30, 36, 0.3);
    }
}

.album-art-large::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, transparent 30%, rgba(227, 30, 36, 0.1) 50%, transparent 70%);
    border-radius: 16px;
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
}

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

.song-title-large {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--stage-red) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.progress-bar-large {
    height: 8px !important;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: visible !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill-large {
    background: linear-gradient(90deg, var(--stage-red) 0%, #ff4444 100%) !important;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
    position: relative;
}

.progress-knob {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(227, 30, 36, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.progress-bar-large:hover .progress-knob {
    opacity: 1;
}

.control-btn-large {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.control-btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.control-btn-large:active::before {
    width: 200%;
    height: 200%;
}

.play-btn-large-main {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, var(--stage-red) 0%, #d91e24 100%) !important;
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4), 0 0 40px rgba(227, 30, 36, 0.2) !important;
    border: none !important;
}

.play-btn-large-main:hover {
    background: linear-gradient(135deg, #d91e24 0%, var(--stage-red) 100%) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.5), 0 0 60px rgba(227, 30, 36, 0.3) !important;
}

.shuffle-btn.active,
.repeat-btn.active {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%) !important;
    color: var(--stage-red) !important;
    border-color: var(--stage-red) !important;
}

.song-additional-info {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, var(--bg-elevated) 100%) !important;
    border: 1px solid var(--border-color) !important;
}

/* Carousel Sections */
.carousel-section {
    margin-bottom: 48px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Enhanced Mini Player */
.mini-player {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(227, 30, 36, 0.2) !important;
}

.mini-album-art {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
    animation: miniAlbumGlow 2s ease-in-out infinite;
}

@keyframes miniAlbumGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(227, 30, 36, 0);
    }
    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(227, 30, 36, 0.3);
    }
}

.mini-song-title {
    font-weight: 700 !important;
    font-size: 0.95em !important;
}

.mini-control-btn {
    position: relative;
    overflow: hidden;
}

.mini-control-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.mini-control-btn:active::after {
    width: 150%;
    height: 150%;
}

.mini-play-btn {
    background: linear-gradient(135deg, var(--stage-red) 0%, #d91e24 100%) !important;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4) !important;
    transform: scale(1);
    transition: all 0.3s ease !important;
}

.mini-play-btn:hover {
    background: linear-gradient(135deg, #d91e24 0%, var(--stage-red) 100%) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.5) !important;
}

.mini-progress-bar {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mini-progress-fill {
    background: linear-gradient(90deg, var(--stage-red) 0%, #ff4444 100%) !important;
    box-shadow: 0 0 8px rgba(227, 30, 36, 0.4);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    color: var(--stage-red);
    flex-shrink: 0;
}

.section-emoji {
    font-size: 1.8em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

/* Language Section Colors */
.haryanvi-section .section-emoji {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.3);
}

.rajasthani-section .section-emoji {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(233, 30, 99, 0.05) 100%);
    border-color: rgba(233, 30, 99, 0.3);
}

.bhojpuri-section .section-emoji {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-color: rgba(156, 39, 176, 0.3);
}

.gujarati-section .section-emoji {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}

.carousel-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.carousel-section .section-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--stage-red);
    color: var(--stage-red);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .song-card,
.carousel-track .album-card {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
}

.carousel-track .loading-state {
    width: 100%;
    padding: 40px;
    text-align: center;
}

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

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.song-card {
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.song-card:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    transform: translateY(-4px);
}

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

.song-card-art img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-card-play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--stage-red);
    border: none;
    color: white;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.song-card:hover .song-card-play {
    opacity: 1;
    transform: translateY(0);
}

.song-card-info {
    padding: 16px;
}

.song-card-title {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-card-artist {
    font-size: 0.85em;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.song-card-language {
    font-size: 0.75em;
    padding: 4px 10px;
    background: rgba(227, 30, 36, 0.2);
    color: var(--stage-red);
    border-radius: 12px;
    font-weight: 600;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--stage-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

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

/* Player View (Full Screen) */
.player-view {
    position: fixed;
    top: 0;
    left: 240px;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 150;
    overflow-y: auto;
}

.player-view-header {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1em;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: var(--hover-bg);
}

.player-view-title {
    font-size: 1.1em;
    font-weight: 600;
}

.player-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.player-view-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.album-art-large {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

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

.player-view-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.song-info-large {
    padding-top: 24px;
}

.song-title-large {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.song-artist-large {
    font-size: 1.3em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.song-meta-large {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95em;
    color: var(--text-secondary);
}

.meta-divider {
    color: var(--border-color);
}

.player-progress-section {
    margin-top: 24px;
}

.progress-bar-large {
    width: 100%;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
}

.progress-fill-large {
    height: 100%;
    background: var(--stage-red);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.progress-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.player-controls-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.control-btn-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn-large:hover {
    background: var(--hover-bg);
    transform: scale(1.05);
}

.play-btn-large {
    width: 72px;
    height: 72px;
    background: var(--stage-red);
    font-size: 2em;
}

.play-btn-large:hover {
    background: var(--stage-dark-red);
    transform: scale(1.1);
}

.volume-section-large {
    display: flex;
    align-items: center;
    gap: 16px;
}

.volume-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: none;
    color: var(--text-primary);
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s;
}

.volume-btn:hover {
    background: var(--hover-bg);
}

.volume-slider-container {
    flex: 1;
    max-width: 120px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--bg-elevated);
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--stage-red);
    cursor: pointer;
}

.song-additional-info {
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
}

.lyrics-section-large {
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: 12px;
}

.lyrics-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 16px;
}

.lyrics-content {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-wrap;
    font-size: 0.95em;
}

.queue-section {
    padding: 32px 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.queue-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
}

.queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.queue-item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.queue-item-number {
    width: 24px;
    text-align: center;
    font-size: 0.9em;
    color: var(--text-tertiary);
    font-weight: 600;
}

.queue-item-art {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

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

.queue-item-info {
    flex: 1;
    min-width: 0;
}

.queue-item-title {
    font-size: 0.95em;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.queue-item-artist {
    font-size: 0.85em;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.queue-item-duration {
    font-size: 0.85em;
    color: var(--text-tertiary);
    margin-right: 12px;
}

.queue-item-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
}

.queue-item:hover .queue-item-play {
    opacity: 1;
}

.queue-item-play:hover {
    background: var(--stage-red);
    border-color: var(--stage-red);
    color: white;
    transform: scale(1.1);
}

.queue-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.95em;
}

.album-badge {
    display: inline-block;
    font-size: 0.7em;
    padding: 2px 6px;
    background: rgba(227, 30, 36, 0.2);
    color: var(--stage-red);
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 600;
}

/* Mini Player */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    z-index: 100;
}

.mini-player-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    padding: 12px 24px;
    align-items: center;
}

.mini-player-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-album-art {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-elevated);
}

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

.mini-song-info {
    flex: 1;
    min-width: 0;
}

.mini-song-title {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-song-artist {
    font-size: 0.8em;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-center {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mini-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.2s;
}

.mini-control-btn:hover {
    background: var(--hover-bg);
}

.mini-play-btn {
    width: 40px;
    height: 40px;
    background: var(--stage-red);
    font-size: 1.2em;
}

.mini-play-btn:hover {
    background: var(--stage-dark-red);
}

.mini-progress-bar {
    width: 100%;
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 2px;
    cursor: pointer;
}

.mini-progress-fill {
    height: 100%;
    background: var(--stage-red);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s;
}

.mini-player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.mini-time {
    font-size: 0.85em;
    color: var(--text-secondary);
}

/* User Menu */
.user-actions {
    position: relative;
}

.user-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 280px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-email {
    font-size: 0.8em;
    color: var(--text-secondary);
}

.user-menu-items {
    padding: 8px 0;
}

.user-menu-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9em;
}

.user-menu-item:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.8);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: none;
    color: var(--text-secondary);
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 24px;
    line-height: 1.5;
}

.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95em;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--stage-red);
}

.btn-modal-primary {
    width: 100%;
    padding: 14px;
    background: var(--stage-red);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-modal-primary:hover {
    background: var(--stage-dark-red);
}

.btn-modal-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-modal-secondary {
    width: 100%;
    padding: 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-secondary:hover {
    background: var(--hover-bg);
}

.modal-divider {
    text-align: center;
    margin: 24px 0;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.admin-hint-modal {
    margin-top: 20px;
    padding: 12px;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 8px;
    text-align: center;
}

.admin-hint-modal p {
    margin: 0;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9em;
}

.alert-error {
    background: rgba(245, 101, 101, 0.2);
    border: 1px solid rgba(245, 101, 101, 0.5);
    color: #f56565;
}

.alert-success {
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid rgba(72, 187, 120, 0.5);
    color: #48bb78;
}

.creator-benefits {
    margin: 20px 0;
    padding: 16px;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 8px;
}

.creator-benefits p {
    margin: 0 0 12px 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95em;
}

.creator-benefits ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.creator-benefits li {
    color: var(--text-secondary);
    font-size: 0.9em;
    padding: 6px 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .player-view-content {
        grid-template-columns: 1fr;
    }

    .album-art-large {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .player-view {
        left: 0;
    }

    .mini-player {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .mini-player-content {
        grid-template-columns: 1fr auto;
    }

    .mini-player-center {
        grid-column: 1 / -1;
        order: 3;
    }

    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    .welcome-banner {
        padding: 32px 20px;
    }

    .welcome-title {
        font-size: 1.8em;
    }

    .welcome-subtitle {
        font-size: 1em;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-chip {
        padding: 16px;
    }

    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .stat-icon-svg {
        width: 24px;
        height: 24px;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .carousel-section {
        margin-bottom: 24px;
    }

    .section-title-wrapper {
        gap: 8px;
    }

    .section-emoji {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
    }

    .section-title {
        font-size: 1.3em;
    }

    .carousel-controls {
        display: none;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-track .song-card,
    .carousel-track .album-card {
        min-width: 140px;
        max-width: 140px;
    }

    .top10-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .top10-rank {
        font-size: 3em;
        bottom: 6px;
        left: 6px;
        -webkit-text-stroke: 3px white;
    }
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    margin-bottom: 40px;
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--stage-red) transparent;
}

/* Hide scrollbar but keep functionality */
.categories-grid::-webkit-scrollbar {
    height: 6px;
}

.categories-grid::-webkit-scrollbar-track {
    background: transparent;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: var(--stage-red);
    border-radius: 3px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: var(--stage-dark-red);
}

.category-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(227, 30, 36, 0.1) 100%);
    border-radius: 16px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(227, 30, 36, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--stage-red);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.3);
}

.category-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.category-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    font-size: 0.9em;
    color: var(--text-secondary);
    opacity: 0.8;
}

.category-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--stage-red);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

/* Category View (Full Page) */
.category-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.category-view.active {
    display: block;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--bg-elevated);
    border-radius: 16px;
}

.category-header-icon {
    font-size: 4em;
    filter: drop-shadow(0 4px 12px rgba(227, 30, 36, 0.5));
}

.category-header-info h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-header-info p {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.category-back-btn {
    background: transparent;
    border: 2px solid var(--stage-red);
    color: var(--stage-red);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.category-back-btn:hover {
    background: var(--stage-red);
    color: white;
}


/* ==================== PREMIUM CATEGORY ICONS ==================== */
.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.5);
}

/* Icon Gradient Backgrounds */
.icon-pop {
    background: linear-gradient(135deg, #e31e24 0%, #ff6b6b 100%);
}

.icon-romantic {
    background: linear-gradient(135deg, #ff006e 0%, #ff758f 100%);
}

.icon-hiphop {
    background: linear-gradient(135deg, #7209b7 0%, #b185db 100%);
}

.icon-devotional {
    background: linear-gradient(135deg, #fb8500 0%, #ffb703 100%);
}

.icon-gym {
    background: linear-gradient(135deg, #06d6a0 0%, #1dd3b0 100%);
}

/* Icon Symbols */
.category-icon::before {
    color: white;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.icon-pop::before {
    content: '♫';
}

.icon-romantic::before {
    content: '♥';
}

.icon-hiphop::before {
    content: '⚡';
}

.icon-devotional::before {
    content: '✦';
}

.icon-gym::before {
    content: '⚡';
}

/* Glow Effect */
.category-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.6;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-icon::after {
    opacity: 0.9;
}


/* New Category Icon Gradients */
.icon-trending {
    background: linear-gradient(135deg, #e31e24 0%, #ff9100 100%);
}

.icon-albums {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

.icon-haryanvi {
    background: linear-gradient(135deg, #ff6d00 0%, #ffaa00 100%);
}

.icon-rajasthani {
    background: linear-gradient(135deg, #d62828 0%, #f77f00 100%);
}

.icon-bhojpuri {
    background: linear-gradient(135deg, #38b000 0%, #70e000 100%);
}

/* New Icon Symbols */
.icon-trending::before {
    content: '🔥';
    filter: none;
}

.icon-albums::before {
    content: '💿';
    filter: none;
}

.icon-haryanvi::before {
    content: '🎻';
    filter: none;
}

.icon-rajasthani::before {
    content: '🪕';
    filter: none;
}

.icon-bhojpuri::before {
    content: '🎺';
    filter: none;
}


/* ==================== CATEGORY MANAGEMENT (INLINE) ==================== */
.remove-from-category-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.song-card:hover .remove-from-category-btn {
    opacity: 1;
}

.remove-from-category-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-songs-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-elevated);
}

.add-songs-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.search-songs-input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-elevated);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1em;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.search-songs-input:focus {
    outline: none;
    border-color: var(--stage-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.available-songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px 0;
}

.available-song-card {
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.available-song-card:hover {
    opacity: 1;
}

.add-to-category-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--stage-red);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    display: flex;

/* ========================================
   📱 TOP 10 - YOUTUBE MUSIC STYLE
   Exact Speed Dial Design
   ======================================== */

@media (max-width: 768px) {
    /* Clean 2-Column Grid */
    .top10-section {
        padding: 0 16px;
    }
    
    .top10-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px 0;
    }
    
    /* Card Style - YouTube Music */
    .top10-song-card {
        aspect-ratio: 1;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background: var(--bg-elevated);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border: none;
    }
    
    /* Album Art Full Background */
    .top10-song-art {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
    }
    
    .top10-song-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Subtle Dark Overlay at Bottom */
    .top10-song-art::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%
        );
    }
    
    /* Small Number Badge - Top Left Corner */
    .top10-rank {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 28px;
        height: 28px;
        background: rgba(0, 0, 0, 0.75);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95em;
        font-weight: 700;
        color: white;
        z-index: 10;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        -webkit-text-stroke: 0;
        text-stroke: 0;
        filter: none;
    }
    
    /* Gold for #1 */
    .top10-song-card:nth-child(1) .top10-rank {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #000;
        font-weight: 900;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    }
    
    /* Song Info - Bottom Overlay */
    .top10-song-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        z-index: 5;
    }
    
    .top10-song-title {
        font-size: 0.85em;
        font-weight: 600;
        color: white;
        margin-bottom: 2px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
    }
    
    .top10-song-artist {
        font-size: 0.7em;
        color: rgba(255, 255, 255, 0.7);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    /* Play Button Overlay - Appears on Tap */
    .top10-song-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        z-index: 20;
        transition: opacity 0.15s ease;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .top10-song-overlay svg {
        width: 20px;
        height: 20px;
        color: #000;
        margin-left: 2px;
    }
    
    /* Touch Feedback */
    .top10-song-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .top10-song-card:active .top10-song-overlay {
        opacity: 1;
    }
    
    /* Playing State - Red Border */
    .top10-song-card.playing {
        border: 2px solid var(--stage-red);
        box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.2);
    }
    
    .top10-song-card.playing .top10-rank {
        background: var(--stage-red);
        color: white;
    }
    
    /* No hover on mobile */
    .top10-song-card:hover {
        transform: none;
        border-color: transparent;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .top10-song-card:hover .top10-rank {
        transform: none;
        filter: none;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .top10-grid {
        gap: 10px;
    }
    
    .top10-song-card {
        border-radius: 10px;
    }
    
    .top10-rank {
        top: 6px;
        left: 6px;
        width: 24px;
        height: 24px;
        font-size: 0.85em;
    }
    
    .top10-song-info {
        padding: 8px;
    }
    
    .top10-song-title {
        font-size: 0.8em;
    }
    
    .top10-song-artist {
        font-size: 0.65em;
    }
    
    .top10-song-overlay {
        width: 44px;
        height: 44px;
    }
    
    .top10-song-overlay svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop - Keep Original */
@media (min-width: 769px) {
    .top10-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ========================================
   🎵 TOP 10 - PURE YOUTUBE MUSIC STYLE
   ======================================== */

@media (max-width: 768px) {
    .top10-section {
        padding: 16px;
        background: var(--bg-primary);
    }
    
    .section-title-wrapper {
        margin-bottom: 12px;
    }
    
    /* Clean 2-Column Grid */
    .top10-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0;
    }
    
    /* Card Container */
    .top10-song-card {
        position: relative;
        aspect-ratio: 1;
        border-radius: 8px;
        overflow: hidden;
        background: var(--bg-elevated);
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .top10-song-card:active {
        transform: scale(0.98);
    }
    
    /* Album Art - Full Card */
    .top10-song-art {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 0 !important;
    }
    
    .top10-song-art img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Dark gradient for text readability */
    .top10-song-art::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
        pointer-events: none;
    }
    
    /* Number Badge - Top Left (YouTube Style) */
    .top10-rank {
        position: absolute !important;
        top: 6px !important;
        left: 6px !important;
        bottom: auto !important;
        right: auto !important;
        width: 24px !important;
        height: 24px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75em !important;
        font-weight: 700 !important;
        color: white !important;
        z-index: 10 !important;
        -webkit-text-stroke: 0 !important;
        text-stroke: 0 !important;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        line-height: 1 !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Hide any extra badge content */
    .top10-rank::after,
    .top10-rank::before {
        display: none !important;
    }
    
    /* Gold for #1 */
    .top10-song-card:nth-child(1) .top10-rank {
        background: linear-gradient(135deg, #FFD700, #FFA500) !important;
        color: #000 !important;
        font-weight: 900 !important;
    }
    
    /* Info Overlay - Inside Card at Bottom */
    .top10-song-info {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 8px !important;
        z-index: 5 !important;
        background: transparent !important;
    }
    
    /* Song Title */
    .top10-song-title {
        font-size: 0.8em !important;
        font-weight: 600 !important;
        color: white !important;
        margin: 0 0 2px 0 !important;
        line-height: 1.2 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Artist Name */
    .top10-song-artist {
        font-size: 0.65em !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Hide extra elements */
    .top10-song-language,
    .top10-song-company {
        display: none !important;
    }
    
    /* Play overlay on tap */
    .top10-song-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.15s;
        z-index: 20;
        pointer-events: none;
    }
    
    .top10-song-card:active .top10-song-overlay {
        opacity: 1;
    }
    
    .top10-song-overlay svg {
        width: 18px;
        height: 18px;
        color: #000;
        margin-left: 2px;
    }
    
    /* Playing state */
    .top10-song-card.playing {
        box-shadow: 0 0 0 2px var(--stage-red);
    }
    
    /* Remove hover effects on mobile */
    .top10-song-card:hover {
        transform: none !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }
    
    .top10-song-card:hover .top10-rank {
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
}

/* Smaller phones */
@media (max-width: 480px) {
    .top10-section {
        padding: 12px;
    }
    
    .top10-grid {
        gap: 6px;
    }
    
    .top10-song-card {
        border-radius: 6px;
    }
    
    .top10-rank {
        top: 4px !important;
        left: 4px !important;
        width: 22px !important;
        height: 22px !important;
        font-size: 0.7em !important;
    }
    
    .top10-song-info {
        padding: 6px !important;
    }
    
    .top10-song-title {
        font-size: 0.75em !important;
    }
    
    .top10-song-artist {
        font-size: 0.6em !important;
    }
}

/* Desktop unchanged */
@media (min-width: 769px) {
    .top10-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
