/* Music Layout Styles */
.music-layout {
    background: #0a0a0a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
}

/* Global Scrollbar Styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.02);
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.app-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Top Header */
.top-header {
    height: 60px;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 600px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.5;
}

.header-search {
    width: 100%;
    padding: 8px 12px 8px 36px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}

.header-search:focus {
    outline: none;
    border-color: #1db954;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-try-pro {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    z-index: 10;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
}

.btn-try-pro:hover {
    background: #fff;
    color: #000;
}

.btn-upload {
    padding: 8px 16px;
    background: #1db954;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-upload:hover {
    background: #1ed760;
}

.btn-login {
    padding: 8px 24px;
    background: #fff;
    border-radius: 20px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.btn-notifications {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 4px 12px 4px 4px;
    cursor: pointer;
    color: #fff;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 10px;
    opacity: 0.7;
}

/* Main Content Area */
.main-content-area {
    flex: 1;
    margin-left: 220px;
    margin-right: 320px;
    margin-top: 60px;
    margin-bottom: 90px;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 120px;
    background: #0a0a0a;
    scroll-behavior: smooth;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-content-area::-webkit-scrollbar {
    width: 12px;
}

.main-content-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.main-content-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

.main-content-area::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.content-section {
    margin-bottom: 48px;
}

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

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

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

.carousel-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #2a2a2a;
}

.see-all-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.see-all-link:hover {
    color: #fff;
}

/* Albums Carousel */
.albums-carousel-container {
    overflow: hidden;
}

.albums-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    /* Fix video rendering during scroll */
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    will-change: scroll-position;
}

.albums-carousel::-webkit-scrollbar {
    height: 8px;
}

.albums-carousel::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.albums-carousel::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

.album-card-item {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 8px;
    background: transparent;
}

.album-card-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.album-card-item.currently-playing {
    background: rgba(29, 185, 84, 0.08);
    /* Removed pulsing green glow - keep it clean and professional */
    opacity: 1 !important; /* Always visible - override stagger animation */
    transform: none !important; /* Reset any transform */
}

.album-card-item.currently-playing .album-cover-wrapper {
    /* Removed green border for ultra-clean look */
}

/* Removed display: block !important - let JavaScript handle display */
.album-card-item.currently-playing .album-cover-video {
    opacity: 1 !important; /* Ensure video is visible */
}

.album-card-item.currently-playing .album-cover-img {
    opacity: 1 !important; /* Ensure image is visible if no video */
}

.album-cover-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 12px;
}

.album-cover-img,
.album-cover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-play-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1db954;
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    padding-left: 4px;
}

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

.album-info-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    min-height: 52px;
}

.album-title-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    line-height: 1.4;
    transition: color 0.2s;
}

.album-title-link:hover {
    color: #1db954;
}

.album-artist-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    line-height: 1.3;
    transition: color 0.2s;
}

.album-artist-link:hover {
    color: #fff;
}

/* Tracks Table */
.tracks-table-wrapper {
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
}

.tracks-table {
    width: 100%;
    border-collapse: collapse;
}

.tracks-table thead {
    border-bottom: 1px solid #1a1a1a;
}

.tracks-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.th-number {
    width: 50px;
    text-align: center;
}

.th-title {
    width: 40%;
}

.th-artist {
    width: 20%;
}

.th-album {
    width: 20%;
}

.th-actions {
    width: 80px;
}

.th-duration {
    width: 80px;
    text-align: right;
}

.track-table-row {
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.2s;
    cursor: pointer;
}

.track-table-row:hover {
    background: #1a1a1a;
}

.track-table-row td {
    padding: 12px 16px;
    font-size: 14px;
    pointer-events: none;
}

.td-number {
    text-align: center;
    color: #b3b3b3;
    font-weight: 500;
    position: relative;
}

.td-number * {
    pointer-events: auto;
}

.track-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.track-play-btn {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s;
}

.track-table-row:hover .number-text {
    display: none;
}

.track-table-row:hover .track-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Keep now-playing indicator visible on hover for playing track only */
.track-table-row.now-playing:hover .now-playing-indicator {
    display: flex !important;
}

.track-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.track-title-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.track-table-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.track-title-text {
    color: #fff;
    font-weight: 500;
}

.artist-text,
.album-text {
    color: #b3b3b3;
}

.artist-link, .album-link {
    color: #b3b3b3;
    text-decoration: none;
}

.artist-link:hover, .album-link:hover {
    color: #fff;
    text-decoration: underline;
}

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

.td-actions * {
    pointer-events: auto;
}

.track-like-icon, .track-more-icon, .track-repost-icon, .track-analytics-icon {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.track-analytics-icon:hover {
    color: #3498db;
}

.track-like-icon:hover {
    color: #1db954;
}

.track-repost-icon:hover,
.track-repost-icon.reposted {
    color: #1db954;
}

.track-more-icon:hover {
    color: #fff;
}

.td-duration {
    text-align: right;
    color: #b3b3b3;
}

/* Track Context Menu */
.track-context-menu {
    position: fixed;
    background: #282828;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    padding: 8px 0;
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

.context-menu-item:hover {
    background: #3e3e3e;
}

.context-menu-item span {
    font-size: 16px;
}

.context-menu-divider {
    height: 1px;
    background: #3e3e3e;
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .main-content-area {
        margin-right: 0 !important;
    }
    .queue-panel {
        right: -320px;
    }
}

@media (max-width: 1024px) {
    .main-content-area {
        margin-left: 0 !important;
    }
    .main-sidebar, .sidebar {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .main-content-area {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 90px;
        padding: 16px;
        padding-bottom: 150px;
    }

    .main-sidebar, .sidebar {
        transform: translateX(-100%);
        z-index: 999;
    }

    .queue-panel {
        right: -320px;
    }

    .header-content {
        gap: 10px;
        padding: 0 12px;
    }

    .header-center {
        max-width: 300px;
    }

    .search-container {
        max-width: 100%;
    }

    .header-search {
        width: 100%;
        font-size: 13px;
    }

    .logo-text {
        display: none;
    }

    .btn-try-pro {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-content-area {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 90px;
        padding: 12px;
        padding-bottom: 150px;
    }

    .header-center {
        max-width: 200px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* ===================================================== */
/* NOTIFICATION SYSTEM STYLES */
/* ===================================================== */

/* Notification wrapper and button */
.notification-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-notifications {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    color: #b3b3b3;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.btn-notifications:hover {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%);
    border-color: rgba(29, 185, 84, 0.3);
    color: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.2);
}

.btn-notifications:active {
    transform: translateY(0);
}

.btn-notifications svg {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-notifications:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: 0px;
    right: 2px;
    background: #f44336;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(244, 67, 54, 0.5);
    border: 1.5px solid #0a0a0a;
}

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

/* Notification dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 380px;
    max-height: 560px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notification-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: #181818;
    transform: rotate(45deg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* Notification dropdown header */
.notification-dropdown-header {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
}

.notification-dropdown-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.mark-all-read-btn {
    background: none;
    border: none;
    color: #1db954;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
    background: rgba(29, 185, 84, 0.12);
}

/* Notification list */
.notification-list {
    max-height: 480px;
    overflow-y: auto;
    padding: 0;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Notification items */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(29, 185, 84, 0.04);
}

.notification-item.has-link:hover {
    background: rgba(29, 185, 84, 0.08);
}

.notification-item.unread {
    background: rgba(29, 185, 84, 0.06);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1db954;
    border-radius: 0 2px 2px 0;
}

.notification-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%);
    border: 1px solid rgba(29, 185, 84, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1db954;
}

.notification-icon-wrapper svg {
    filter: drop-shadow(0 1px 2px rgba(29, 185, 84, 0.3));
}

.notification-content {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.link-indicator {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    opacity: 0.6;
    color: #1db954;
}

.notification-message {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.notification-time {
    font-size: 11px;
    color: #707070;
    font-weight: 500;
    margin: 0;
}

.notification-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #707070;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    opacity: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-item:hover .notification-dismiss {
    opacity: 1;
}

.notification-dismiss:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.notification-dismiss svg {
    display: block;
}

/* Notification empty/loading states */
.notification-loading,
.notification-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #888;
}

.notification-empty p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(29, 185, 84, 0.2);
    border-top-color: #1db954;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

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

.notification-empty svg {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.2;
    stroke: currentColor;
}

/* ===================================================== */
/* LANGUAGE SWITCHER STYLES */
/* ===================================================== */

.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-language {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 44px;
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 160px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: #181818;
    transform: rotate(45deg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: rgba(29, 185, 84, 0.08);
}

.language-item.active {
    background: rgba(29, 185, 84, 0.12);
}

.lang-flag {
    font-size: 20px;
    line-height: 1;
}

.lang-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.check-icon {
    color: #1db954;
    flex-shrink: 0;
}

/* Fix video rendering issues during carousel scroll */
.album-cover-video,
.montage-video {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    will-change: transform;
}
