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

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0f;
            color: #e4e4e7;
            height: 100vh;
            overflow: hidden;
            font-size: 15px;
        }

        ::-webkit-scrollbar {
            width: 3px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(139, 92, 246, 0.4);
            border-radius: 10px;
        }

        /* Layout 3 cột */
        .app {
            display: flex;
            height: 100vh;
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px 24px 0 24px;
            gap: 20px;
            overflow: hidden;
        }

        /* ========== CỘT TRÁI ========== */
        .sidebar {
            width: 260px;
            flex-shrink: 0;
            background: rgba(18, 18, 24, 0.7);
            backdrop-filter: blur(16px);
            border-radius: 24px;
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            border: 1px solid rgba(255,255,255,0.05);
            height: calc(100vh - 40px);
            overflow-y: auto;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-left: 8px;
            cursor: pointer;
        }
        .logo-icon {
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(120deg, #ffffff, #a78bfa);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .nav-menu {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .nav-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            border-radius: 14px;
            color: #a1a1aa;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            cursor: pointer;
        }
        .nav-item i {
            width: 22px;
            font-size: 1.1rem;
        }
        .nav-item.active {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
        }
        .nav-item:hover:not(.active) {
            background: rgba(255,255,255,0.03);
            color: #e4e4e7;
        }
        .playlist-section {
            margin-top: 8px;
        }
        .playlist-header {
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            margin-bottom: 14px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #71717a;
        }
        .playlist-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .playlist-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
            color: #a1a1aa;
        }
        .playlist-item:hover {
            background: rgba(255,255,255,0.03);
            color: #e4e4e7;
        }
        .playlist-item i {
            width: 24px;
            color: #8b5cf6;
        }
        .playlist-item.active {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
        }
        .playlist-item.active i {
            color: #c084fc;
        }

        /* ========== CỘT GIỮA ========== */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            overflow-x: hidden;
            gap: 0;
            padding-right: 4px;
        }

        /* STICKY HEADER - Cố định khung chào và tìm kiếm */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: #0a0a0f;
            padding-top: 0;
            margin-bottom: 24px;
        }

        .hero {
            background: linear-gradient(135deg, #1e1a2f, #0c0c12);
            border-radius: 24px;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(255,255,255,0.05);
            flex-shrink: 0;
        }
        .greeting h3 {
            font-size: 1.2rem;
            font-weight: 500;
        }
        .greeting p {
            font-size: 0.75rem;
            color: #8b5cf6;
            margin-top: 4px;
        }
        .hero-search {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 44px;
            padding: 6px 6px 6px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.2s;
        }
        .hero-search:focus-within {
            border-color: #8b5cf6;
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-search i {
            color: #71717a;
            font-size: 0.9rem;
        }
        .hero-search input {
            background: transparent;
            border: none;
            outline: none;
            color: white;
            font-size: 0.85rem;
            width: 240px;
            padding: 8px 0;
        }
        .hero-search input::placeholder {
            color: #52525b;
        }
        .hero-search button {
            background: #8b5cf6;
            border: none;
            padding: 6px 18px;
            border-radius: 36px;
            color: white;
            font-weight: 500;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .hero-search button:hover {
            background: #a78bfa;
        }

        /* Nội dung cuộn */
        .scrollable-content {
            flex: 1;
        }

        /* Nút back */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30, 30, 38, 0.6);
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #a1a1aa;
            cursor: pointer;
            transition: 0.2s;
            width: fit-content;
            margin-bottom: 20px;
        }
        .back-button:hover {
            background: rgba(139, 92, 246, 0.2);
            color: #c084fc;
        }

        /* Album / Song Header */
        .album-header, .song-header {
            background: linear-gradient(135deg, #1e1a2f, #0c0c12);
            border-radius: 24px;
            padding: 28px;
            display: flex;
            gap: 28px;
            margin-bottom: 28px;
            border: 1px solid rgba(255,255,255,0.05);
            flex-wrap: wrap;
        }
        .album-cover-large, .song-cover-large {
            width: 200px;
            height: 200px;
            background: linear-gradient(145deg, #2e2a5e, #1a1a2e);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
            flex-shrink: 0;
            position: relative;
        }
        .play-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.2s;
            cursor: pointer;
        }
        .album-cover-large:hover .play-overlay,
        .song-cover-large:hover .play-overlay {
            opacity: 1;
        }
        .album-info, .song-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .type-badge {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8b5cf6;
            margin-bottom: 12px;
        }
        .album-info h1, .song-info h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .artist-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .artist-info i {
            font-size: 1.8rem;
            color: #8b5cf6;
        }
        .artist-info span {
            font-size: 1rem;
            color: #c084fc;
            cursor: pointer;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            font-size: 0.8rem;
            color: #a1a1aa;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .meta-info i {
            margin-right: 6px;
        }
        .action-buttons {
            display: flex;
            gap: 16px;
        }
        .btn-play {
            background: #8b5cf6;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-play:hover {
            background: #a78bfa;
            transform: scale(1.02);
        }
        .btn-follow {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 24px;
            border-radius: 40px;
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
        }

        /* Tracklist */
        .tracklist-section {
            background: rgba(18, 18, 24, 0.4);
            border-radius: 24px;
            padding: 20px;
            margin-bottom: 28px;
        }
        .tracklist-header {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            font-size: 0.7rem;
            color: #71717a;
        }
        .tracklist-items {
            display: flex;
            flex-direction: column;
        }
        .track-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .track-item:hover {
            background: rgba(139, 92, 246, 0.1);
        }
        .track-number {
            width: 50px;
            font-size: 0.8rem;
            color: #8b5cf6;
        }
        .track-info {
            flex: 1;
        }
        .track-info h4 {
            font-size: 0.85rem;
            font-weight: 500;
        }
        .track-info p {
            font-size: 0.65rem;
            color: #71717a;
        }
        .track-duration {
            width: 70px;
            text-align: right;
            font-size: 0.7rem;
            color: #8b8b9a;
        }
        .active-track {
            background: rgba(139, 92, 246, 0.2);
        }

        /* Comments Section */
        .comments-section {
            background: rgba(18, 18, 24, 0.4);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 28px;
        }
        .comments-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .comments-header h3 {
            font-size: 1rem;
            font-weight: 600;
        }
        .comment-form {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
        }
        .comment-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(145deg, #8b5cf6, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .comment-input-wrapper {
            flex: 1;
            background: rgba(30, 30, 38, 0.5);
            border-radius: 20px;
            padding: 10px 16px;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .comment-input-wrapper textarea {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            color: white;
            font-size: 0.8rem;
            font-family: inherit;
            resize: none;
            min-height: 50px;
        }
        .comment-input-wrapper textarea::placeholder {
            color: #71717a;
        }
        .comment-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 8px;
        }
        .btn-submit {
            background: #8b5cf6;
            border: none;
            padding: 5px 16px;
            border-radius: 30px;
            color: white;
            font-size: 0.7rem;
            cursor: pointer;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .comment-item {
            display: flex;
            gap: 12px;
        }
        .comment-avatar-small {
            width: 36px;
            height: 36px;
            background: linear-gradient(145deg, #4f46e5, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            flex-shrink: 0;
        }
        .comment-content {
            flex: 1;
        }
        .comment-user {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 4px;
        }
        .comment-user strong {
            font-size: 0.8rem;
        }
        .comment-time {
            font-size: 0.6rem;
            color: #71717a;
        }
        .comment-text {
            font-size: 0.8rem;
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .comment-stats button {
            background: transparent;
            border: none;
            color: #8b8b9a;
            font-size: 0.65rem;
            cursor: pointer;
            margin-right: 12px;
        }
        .load-more {
            text-align: center;
            margin-top: 16px;
            padding-top: 12px;
        }
        .load-more button {
            background: transparent;
            border: none;
            color: #8b5cf6;
            font-size: 0.75rem;
            cursor: pointer;
        }

        /* Artist Albums Grid */
        .artist-section {
            margin-bottom: 28px;
        }
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 16px;
        }
        .section-title h3 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .artist-albums-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .artist-album-card {
            background: rgba(20, 20, 28, 0.5);
            border-radius: 16px;
            padding: 12px;
            cursor: pointer;
            text-align: center;
            transition: 0.2s;
        }
        .artist-album-card:hover {
            background: rgba(30, 30, 38, 0.8);
            transform: translateY(-2px);
        }
        .artist-album-cover {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(145deg, #2a2a3a, #1a1a24);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 8px;
        }
        .artist-album-card h4 {
            font-size: 0.8rem;
            font-weight: 600;
        }
        .artist-album-card p {
            font-size: 0.6rem;
            color: #71717a;
        }

        /* Artist Songs List */
        .artist-songs {
            background: rgba(18, 18, 24, 0.4);
            border-radius: 24px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .song-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .song-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            border-radius: 12px;
            cursor: pointer;
        }
        .song-item:hover {
            background: rgba(139, 92, 246, 0.1);
        }
        .song-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 2;
        }
        .song-number {
            color: #8b5cf6;
            width: 28px;
            font-size: 0.75rem;
        }
        .song-info h4 {
            font-size: 0.8rem;
            font-weight: 500;
        }
        .song-info p {
            font-size: 0.6rem;
            color: #71717a;
        }
        .song-duration {
            font-size: 0.7rem;
            color: #8b8b9a;
        }
        .active-song {
            background: rgba(139, 92, 246, 0.2);
        }

        /* Right Panel */
        .right-panel {
            width: 280px;
            flex-shrink: 0;
            background: rgba(18, 18, 24, 0.5);
            backdrop-filter: blur(16px);
            border-radius: 24px;
            padding: 18px 14px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: calc(100vh - 40px);
            overflow-y: auto;
        }
        .new-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }
        .new-track-list, .trending-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .new-track-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 8px;
            border-radius: 12px;
            cursor: pointer;
        }
        .new-track-item:hover {
            background: rgba(139, 92, 246, 0.1);
        }
        .new-rank {
            font-size: 0.7rem;
            color: #8b5cf6;
            width: 24px;
        }
        .new-info h5 {
            font-size: 0.75rem;
            font-weight: 500;
        }
        .new-info p {
            font-size: 0.55rem;
            color: #71717a;
        }
        .notification-box {
            background: rgba(139, 92, 246, 0.08);
            border-radius: 14px;
            padding: 10px;
        }

        /* Player Bar */
        .player-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            padding: 8px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            z-index: 100;
        }
        .now-playing {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 180px;
        }
        .np-cover {
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, #8b5cf6, #6366f1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .np-info h5 {
            font-size: 0.8rem;
            font-weight: 500;
        }
        .np-info p {
            font-size: 0.6rem;
            color: #71717a;
        }
        .player-controls {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 2;
            max-width: 380px;
        }
        .control-buttons {
            display: flex;
            gap: 14px;
        }
        .control-buttons button {
            background: transparent;
            border: none;
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            width: 28px;
            height: 28px;
            border-radius: 50%;
        }
        .play-pause {
            background: #8b5cf6 !important;
        }
        .progress-area {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
        }
        .progress-bar {
            flex: 1;
            height: 3px;
            background: #2a2a32;
            border-radius: 3px;
            cursor: pointer;
        }
        .progress-fill {
            width: 0%;
            height: 100%;
            background: #8b5cf6;
        }
        .volume-control {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 90px;
        }
        .volume-slider {
            width: 60px;
            height: 3px;
            background: #2a2a32;
            border-radius: 3px;
            cursor: pointer;
        }
        .volume-fill {
            width: 70%;
            height: 100%;
            background: #8b5cf6;
        }


        /* Shared layout + typography sync */
        :root {
            --app-max-width: 1600px;
            --app-gap: 20px;
            --app-side-padding: 24px;
            --sidebar-width: 260px;
            --right-panel-width: 280px;
            --base-font-size: 15px;
        }

        body {
            font-size: var(--base-font-size);
        }

        .app {
            max-width: var(--app-max-width);
            gap: var(--app-gap);
            padding: 20px var(--app-side-padding) 0 var(--app-side-padding);
        }

        .sidebar {
            width: var(--sidebar-width);
            overflow-y: auto;
        }

        .main-content {
            flex: 1 1 auto;
            min-width: 0;
            overflow-x: hidden;
        }

        .right-panel {
            width: var(--right-panel-width);
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            font-size: 1.4rem;
        }

        .logo-text {
            font-size: 1.5rem;
            letter-spacing: 0;
        }

        .nav-item {
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .nav-item i {
            font-size: 1.1rem;
        }

        .playlist-header {
            font-size: 0.75rem;
            letter-spacing: 0;
        }

        .playlist-item {
            padding: 10px 12px;
            font-size: 0.9rem;
        }

        .hero {
            padding: 20px 28px;
        }

        .hero-search {
            border-radius: 44px;
        }

        .hero-search button {
            padding: 6px 18px;
            border-radius: 36px;
            font-size: 0.8rem;
        }


        /* Unified design system: cards, spacing, right panel */
        :root {
            --section-space: 28px;
            --panel-gap: 20px;
            --panel-padding-y: 18px;
            --panel-padding-x: 14px;
            --panel-radius: 24px;
            --card-radius: 18px;
            --card-padding: 12px;
        }

        .scrollable-content {
            display: flex;
            flex-direction: column;
            gap: var(--section-space);
            padding-bottom: 20px;
        }

        .scrollable-content > .album-section,
        .scrollable-content > .bottom-double,
        .scrollable-content > .album-header,
        .scrollable-content > .song-header,
        .scrollable-content > .comments-section,
        .scrollable-content > .artist-section,
        .scrollable-content > .artist-songs,
        .scrollable-content > .back-button {
            margin-bottom: 0 !important;
        }

        .section-title {
            margin-bottom: 16px;
        }

        .section-title h2,
        .section-title h3 {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: -0.2px;
        }

        .section-title a {
            color: #8b5cf6;
            font-size: 0.7rem;
            text-decoration: none;
            opacity: 0.7;
            transition: 0.2s;
        }

        .section-title a:hover {
            opacity: 1;
        }

        .bottom-double,
        .album-grid,
        .playlist-grid,
        .artist-albums-grid {
            gap: 20px;
        }

        .left-songs,
        .right-playlists,
        .artist-songs {
            background: rgba(18, 18, 24, 0.4);
            border-radius: var(--panel-radius);
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.03);
        }

        .album-card,
        .playlist-card,
        .artist-album-card {
            background: rgba(20, 20, 28, 0.5);
            border-radius: var(--card-radius);
            padding: var(--card-padding);
            border: 1px solid rgba(255,255,255,0.03);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        .album-cover,
        .playlist-cover,
        .artist-album-cover {
            border-radius: 16px;
            margin-bottom: 10px;
        }

        .album-card h4,
        .playlist-card h4,
        .artist-album-card h4 {
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1.35;
            min-height: 2.16em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .album-card p,
        .playlist-card p,
        .artist-album-card p {
            font-size: 0.65rem;
            color: #8b8b9a;
            margin-top: 4px;
            line-height: 1.45;
            min-height: 1.9em;
        }

        .song-list,
        .new-track-list,
        .trending-list {
            gap: 8px;
        }

        .song-row,
        .song-item,
        .new-track-item {
            min-height: 52px;
        }

        .song-row,
        .song-item {
            padding: 8px 12px;
            border-radius: 12px;
        }

        .song-info h4,
        .new-info h5,
        .np-info h5 {
            font-size: 0.8rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .song-info p,
        .new-info p,
        .np-info p,
        .notification-text p {
            font-size: 0.65rem;
            color: #71717a;
            line-height: 1.4;
        }

        .song-duration,
        .new-rank {
            font-size: 0.7rem;
        }

        .right-panel {
            width: var(--right-panel-width);
            background: rgba(18, 18, 24, 0.5);
            backdrop-filter: blur(16px);
            border-radius: var(--panel-radius);
            padding: var(--panel-padding-y) var(--panel-padding-x);
            display: flex;
            flex-direction: column;
            gap: var(--panel-gap);
            border: 1px solid rgba(255,255,255,0.05);
            height: calc(100vh - 40px);
            overflow-y: auto;
        }

        .right-panel > * {
            flex-shrink: 0;
        }

        .new-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .new-track-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 14px;
            cursor: pointer;
            transition: 0.2s;
        }

        .new-track-item:hover {
            background: rgba(139, 92, 246, 0.1);
        }

        .new-rank {
            width: 24px;
            color: #8b5cf6;
            font-weight: 500;
        }

        .notification-box {
            background: rgba(139, 92, 246, 0.08);
            border-radius: 16px;
            padding: 12px;
            border: 1px solid rgba(139, 92, 246, 0.14);
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notification-image {
            width: 36px;
            height: 36px;
            background: linear-gradient(145deg, #8b5cf6, #6366f1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .notification-text h4 {
            font-size: 0.72rem;
            font-weight: 600;
            line-height: 1.35;
        }

        @media (max-width: 1200px) {
            .artist-albums-grid { grid-template-columns: repeat(3, 1fr); }
            .right-panel { display: none; }
        }
        @media (max-width: 900px) {
            .artist-albums-grid { grid-template-columns: repeat(2, 1fr); }
            .sidebar { display: none; }
            .hero { flex-direction: column; align-items: flex-start; gap: 12px; }
            .hero-search input { width: 100%; }
        }


/* ===== Homepage standalone extensions ===== */
body.vibewave-homepage {
    overflow: hidden;
}

a {
    color: inherit;
}

.logo-area,
.nav-menu a,
.playlist-list a,
.album-card,
.playlist-card,
.song-row,
.new-track-item,
.trending-list .new-track-item {
    text-decoration: none;
}

.logo-area {
    display: flex;
}

.nav-item-link,
.playlist-item-link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.playlist-item-link {
    gap: 12px;
}

.scrollable-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 112px;
}

.scrollable-content > .album-section,
.scrollable-content > .bottom-double {
    margin-bottom: 0 !important;
}

.album-tab-header,
.song-tab-header,
.playlist-tab-header {
    display: flex;
    gap: 8px;
    background: rgba(30, 30, 38, 0.5);
    padding: 5px;
    border-radius: 44px;
    width: fit-content;
    margin-bottom: 16px;
}

.album-tab-btn,
.song-tab-btn,
.playlist-tab-btn {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.album-tab-btn {
    padding: 6px 18px;
    border-radius: 36px;
    font-size: 0.8rem;
}

.song-tab-btn,
.playlist-tab-btn {
    padding: 5px 16px;
    border-radius: 32px;
    font-size: 0.75rem;
}

.album-tab-btn.active,
.song-tab-btn.active,
.playlist-tab-btn.active {
    background: #8b5cf6;
    color: #ffffff;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: inherit;
    font-size: 0.68rem;
    line-height: 1;
}

.album-tab-btn.active .tab-count,
.song-tab-btn.active .tab-count {
    background: rgba(255,255,255,0.18);
}

.album-tab-content,
.song-tab-content,
.playlist-panel-content {
    display: none;
}

.album-tab-content.active-content,
.song-tab-content.active-content,
.playlist-panel-content.active-content {
    display: block;
}


.album-tab-content.is-loading,
.song-tab-content.is-loading,
.playlist-panel-content.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.album-tab-content[aria-busy="true"],
.song-tab-content[aria-busy="true"],
.playlist-panel-content[aria-busy="true"] {
    min-height: 160px;
}


.album-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
}

.album-card,
.playlist-card {
    background: rgba(20, 20, 28, 0.5);
    border-radius: 18px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    color: inherit;
    text-decoration: none;
}

.album-card:hover,
.playlist-card:hover {
    background: rgba(30, 30, 38, 0.8);
    transform: translateY(-2px);
}

.album-cover,
.playlist-cover,
.np-cover {
    position: relative;
    overflow: hidden;
}

.album-cover,
.playlist-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
}

.album-cover img,
.playlist-cover img,
.np-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-fallback,
.np-cover-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.album-card h4,
.playlist-card h4 {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-card p,
.playlist-card p {
    font-size: 0.65rem;
    color: #8b8b9a;
    margin-top: 4px;
}

.bottom-double {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 20px;
    margin-bottom: 0 !important;
}

.left-songs,
.right-playlists {
    min-width: 0;
    background: rgba(18, 18, 24, 0.4);
    border-radius: 24px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.03);
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.song-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.song-row:hover {
    background: rgba(139, 92, 246, 0.1);
}

.song-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 2;
    min-width: 0;
}

.song-number {
    width: 28px;
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 500;
    flex-shrink: 0;
}

.song-row .song-info {
    min-width: 0;
    justify-content: center;
}

.song-row .song-info h4 {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-row .song-info p {
    font-size: 0.65rem;
    color: #71717a;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-title-link,
.new-track-link {
    color: inherit;
    text-decoration: none;
}

.song-title-link:hover,
.new-track-link:hover {
    color: #c4b5fd;
}

.song-duration {
    font-size: 0.65rem;
    color: #8b8b9a;
    padding-left: 12px;
    flex-shrink: 0;
}

.active-song,
.new-track-item.active-song {
    background: rgba(139, 92, 246, 0.15);
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.playlist-stats {
    font-size: 0.55rem;
    color: #8b5cf6;
    margin-top: 4px;
}

.new-track-item {
    border: 0;
    width: 100%;
    background: transparent;
    text-align: left;
    color: inherit;
    padding: 8px 0;
}

.new-track-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    padding-left: 8px;
    padding-right: 8px;
}

.notification-text p {
    line-height: 1.5;
}

.hero-search {
    display: flex;
    align-items: center;
}

.hero-search form {
    display: contents;
}

.hero-search button {
    appearance: none;
}

.player-bar button {
    cursor: pointer;
}

.player-bar .control-buttons button,
.player-bar .volume-control button {
    border: 0;
    background: transparent;
    color: inherit;
}

.player-bar .progress-area {
    user-select: none;
}

.player-bar .progress-bar,
.player-bar .volume-slider {
    cursor: pointer;
}

.player-bar .np-cover {
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
}

.player-bar .np-cover img {
    border-radius: inherit;
}

.google-one-tap-host {
    position: relative;
    z-index: 60;
}

.search-status-chip {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.18);
    color: #c4b5fd;
    font-size: 0.72rem;
}

.search-status-chip i {
    font-size: 0.8rem;
}

.no-data-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(20, 20, 28, 0.42);
    border: 1px solid rgba(255,255,255,0.03);
    color: #9ca3af;
    font-size: 0.82rem;
}

.home-pagination {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 4px;
}

.home-pagination-inner {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(20, 20, 28, 0.55);
    border: 1px solid rgba(255,255,255,0.04);
}

.home-pagination-link {
    min-width: 28px;
    height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    transition: 0.2s;
}

.home-pagination-link:hover {
    background: rgba(139, 92, 246, 0.14);
    color: #e9d5ff;
}

.home-pagination-link.is-current {
    background: #8b5cf6;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.22);
}

.home-pagination-nav {
    letter-spacing: -1px;
}

.left-songs .home-pagination {
    margin-top: 10px;
}

.left-songs .home-pagination-inner {
    gap: 4px;
    padding: 3px;
}

.left-songs .home-pagination-link {
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    font-size: 0.7rem;
}

@media (max-width: 1200px) {
    .album-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bottom-double {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    }
}

@media (max-width: 992px) {
    body.vibewave-homepage {
        overflow: auto;
    }

    .app {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .sidebar,
    .right-panel {
        display: none;
    }

    .main-content {
        padding-right: 0;
    }

    .scrollable-content {
        padding-bottom: 112px;
    }

    .bottom-double {
        grid-template-columns: minmax(0, 1fr);
    }

    .album-grid,
    .playlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 18px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .hero-search input {
        width: 100%;
        min-width: 0;
    }

    .left-songs,
    .right-playlists {
        padding: 16px;
        border-radius: 20px;
    }

    .album-grid,
    .playlist-grid {
        gap: 14px;
    }

    .album-tab-header,
    .song-tab-header,
    .playlist-tab-header {
        width: 100%;
        overflow-x: auto;
        padding: 4px;
    }

    .home-pagination {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .scrollable-content {
        padding-bottom: 120px;
    }
}

@media (max-width: 560px) {
    .app {
        padding: 14px 14px 0 14px;
    }

    .album-grid,
    .playlist-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bottom-double {
        gap: 16px;
    }

    .album-card,
    .playlist-card {
        padding: 10px;
    }

    .scrollable-content {
        padding-bottom: 132px;
    }

    .player-bar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
    }
}



.right-playlists .home-pagination {
    margin-top: 12px;
}


.playlist-item-form {
    width: 100%;
    margin: 0;
}

.playlist-item-button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
}

.playlist-item-button:hover {
    background: rgba(255,255,255,0.03);
    color: #e4e4e7;
}

.playlist-item-button i {
    width: 24px;
    color: #8b5cf6;
}

.sidebar-secondary-header {
    margin-top: 18px;
}

.home-rhythm-section {
    margin-bottom: 22px;
    padding: 22px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(139,92,246,0.16), transparent 34%), rgba(12, 14, 28, 0.88);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.home-rhythm-heading { margin-bottom: 16px; }
.home-rhythm-kicker,
.home-random-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 6px;
}
.home-rhythm-heading h2,
.home-random-artists-header h3 {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.1;
    color: #f5f3ff;
}
.home-rhythm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.home-rhythm-card,
.home-random-artists-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
}
.home-rhythm-card-header { margin-bottom: 10px; }
.home-rhythm-mini-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #f5f3ff;
}
.home-rhythm-mini-subtitle {
    margin-top: 4px;
    font-size: 0.82rem;
    color: #9ca3af;
}
.home-rhythm-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.home-rhythm-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: 0.2s ease;
}
.home-rhythm-row:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(139,92,246,0.22);
}
.home-rhythm-row.is-leading {
    background: rgba(139,92,246,0.13);
    border-color: rgba(139,92,246,0.35);
}
.home-rhythm-rank {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    background: rgba(255,255,255,0.06);
    color: #c4b5fd;
    font-weight: 700;
    font-size: 0.78rem;
}
.home-rhythm-text { min-width: 0; }
.home-rhythm-text h4 {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.25;
    color: #f5f3ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rhythm-text p {
    margin: 4px 0 0;
    font-size: 0.82rem;
    color: #a1a1aa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-random-artists-panel {
    margin-top: 18px;
    position: relative;
    overflow: hidden;
}
.home-random-artists-panel::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(139,92,246,0.2), rgba(139,92,246,0));
    pointer-events: none;
}
.home-random-artists-header { margin-bottom: 16px; position: relative; z-index: 1; }
.home-random-artists-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}
.home-random-artist-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: 0.2s ease;
}
.home-random-artist-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(139,92,246,0.2);
}
.home-random-artist-badge {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.home-random-artist-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.home-random-artist-copy strong {
    font-size: 1rem;
    color: #f5f3ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-random-artist-copy small {
    color: #a1a1aa;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .home-rhythm-grid,
    .home-random-artists-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


.home-random-artists-footer {
    margin-top: 28px;
}

.home-random-artists-footer .home-random-artists-panel {
    width: 100%;
    min-height: 0;
}


.home-block-heading{display:flex;align-items:center;gap:12px;min-width:0;}
.home-block-heading-artists{margin-bottom:0;}
.home-block-icon{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:14px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);font-size:1.1rem;box-shadow:inset 0 1px 0 rgba(255,255,255,0.08);flex:0 0 38px;}
.home-greeting-icon{margin-right:10px;}
.home-rhythm-card-header{margin-bottom:14px;}
.home-rhythm-list.song-list{gap:10px;}
.home-rhythm-list .song-row{min-height:58px;padding:12px 14px;border-radius:18px;background:rgba(255,255,255,0.03);border:1px solid transparent;transition:.2s ease;}
.home-rhythm-list .song-row:hover{background:rgba(255,255,255,0.05);border-color:rgba(139,92,246,0.22);}
.home-rhythm-list .song-row.active-song{background:rgba(139,92,246,0.13);border-color:rgba(139,92,246,0.35);}
.home-rhythm-list .song-number{width:30px;height:30px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 30px;background:rgba(255,255,255,0.06);color:#c4b5fd;font-weight:700;font-size:.78rem;}
.home-rhythm-list .song-info h4{font-size:1rem;line-height:1.3;}
.home-rhythm-list .song-info p{font-size:.84rem;margin-top:4px;}
.home-rhythm-heading h2{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.home-random-artists-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.home-random-artist-card{padding:14px 16px;}
.home-random-artist-copy{justify-content:center;}
.home-random-artist-copy strong{font-size:.96rem;}
.home-random-artist-copy small{display:none!important;}
@media (max-width: 992px){.home-random-artists-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.home-random-artists-grid{grid-template-columns:minmax(0,1fr);}.home-block-icon{width:34px;height:34px;border-radius:12px;font-size:1rem;}}

/* V3 home list + playlist consistency */
.home-rhythm-list.song-list{gap:4px;}
.home-rhythm-list .song-row{min-height:48px;padding:8px 12px;border-radius:12px;background:transparent;border:0;}
.home-rhythm-list .song-row:hover{background:rgba(139,92,246,0.1);border-color:transparent;}
.home-rhythm-list .song-row.active-song{background:rgba(139,92,246,0.15);border-color:transparent;}
.home-rhythm-list .song-number{width:28px;height:auto;background:none;border-radius:0;color:#8b5cf6;display:inline-block;flex:0 0 28px;font-size:.8rem;font-weight:500;}
.home-rhythm-list .song-info h4{font-size:.8rem;font-weight:500;line-height:1.25;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.home-rhythm-list .song-info p{font-size:.65rem;color:#71717a;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.right-playlists{min-width:0;}
.playlist-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.playlist-card{padding:10px;border-radius:16px;}
.playlist-cover{margin-bottom:8px;border-radius:14px;}
.playlist-card h4{font-size:.78rem;font-weight:600;line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;white-space:normal;min-height:2.45em;}
.playlist-card p,.playlist-card .playlist-stats{display:none !important;}
.home-random-artists-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.home-random-artists-panel .home-random-artist-card:nth-child(n+7){display:none;}
@media (max-width: 1200px){.playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 992px){.playlist-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 760px){.playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.home-random-artists-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 480px){.playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.playlist-card{padding:9px;}}


/* V3 home greeting + playlist grid refinement */
.home-rhythm-heading h2{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.home-greeting-icon-after{order:2;display:inline-flex;align-items:center;justify-content:center;}
.right-playlists .playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.right-playlists .playlist-card{padding:12px;border-radius:18px;}
.right-playlists .playlist-cover{width:100%;aspect-ratio:1;border-radius:16px;margin-bottom:10px;background:linear-gradient(145deg,#2a2a3a,#1a1a24);}
.right-playlists .playlist-card h4{font-size:.9rem;line-height:1.35;min-height:2.5em;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;white-space:normal;}
@media (max-width: 992px){.right-playlists .playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.right-playlists .playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}}

/* V3 home: even section spacing + random artist card refresh */
.scrollable-content > .home-rhythm-section,
.scrollable-content > .home-random-artists-footer {
    margin: 0 !important;
}

.home-rhythm-section,
.home-random-artists-footer,
.home-random-artists-panel {
    margin-top: 0;
    margin-bottom: 0;
}

.home-random-artists-footer .home-random-artists-panel {
    width: 100%;
}

.home-random-artists-panel {
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.home-random-artists-header {
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: 0;
}

.home-random-artists-header-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-random-artists-header-copy h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
}

.home-random-artists-header-copy p {
    margin: 0;
    max-width: 60ch;
    color: rgba(229, 231, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.55;
}

.home-random-artists-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-random-artists-panel .home-random-artist-card:nth-child(n+5) {
    display: none;
}

.home-random-artist-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    min-height: 100%;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 11, 33, 0.94), rgba(5, 7, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-random-artist-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.36);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    background: linear-gradient(180deg, rgba(11, 15, 42, 0.96), rgba(6, 9, 26, 0.99));
}

.home-random-artist-media,
.home-random-artist-media:visited {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(180deg, #111632, #090d23);
    border: 1px solid rgba(107, 114, 255, 0.14);
    text-decoration: none;
}

.home-random-artist-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-random-artist-media.is-placeholder {
    background: linear-gradient(180deg, rgba(18, 23, 53, 0.98), rgba(8, 12, 35, 0.98));
}

.home-random-artist-glow {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(158, 109, 255, 0.45), rgba(158, 109, 255, 0));
    filter: blur(12px);
    pointer-events: none;
}

.home-random-artist-glow--top {
    top: 8px;
    left: 8px;
}

.home-random-artist-glow--bottom {
    right: 12px;
    bottom: 12px;
}

.home-random-artist-avatar-head,
.home-random-artist-avatar-body,
.home-random-artist-avatar-arc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.home-random-artist-avatar-head {
    top: 18%;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c4b5fd, #a78bfa);
    box-shadow: 0 12px 30px rgba(167, 139, 250, 0.18);
}

.home-random-artist-avatar-body {
    top: 52%;
    width: 86px;
    height: 46px;
    border: 1.6px solid rgba(126, 117, 232, 0.64);
    border-top-left-radius: 46px;
    border-top-right-radius: 46px;
    border-bottom: 0;
}

.home-random-artist-avatar-arc {
    border-top-style: solid;
    border-top-color: rgba(120, 109, 224, 0.42);
    border-radius: 999px;
}

.home-random-artist-avatar-arc--top {
    top: 18%;
    width: 124px;
    height: 42px;
    border-top-width: 4px;
}

.home-random-artist-avatar-arc--mid {
    top: 40%;
    width: 144px;
    height: 34px;
    border-top-width: 2px;
}

.home-random-artist-media-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(244, 242, 255, 0.92);
    color: #7c3aed;
    box-shadow: 0 14px 28px rgba(124, 58, 237, 0.28);
}

.home-random-artist-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.home-random-artist-eyebrow {
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.58);
}

.home-random-artist-title,
.home-random-artist-title a,
.home-random-artist-title a:visited {
    margin: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.35;
}

.home-random-artist-desc {
    margin: 0;
    color: rgba(229, 231, 255, 0.8);
    font-size: 0.94rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
}

.home-random-artist-actions {
    margin-top: auto;
}

.home-random-artist-btn,
.home-random-artist-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.home-random-artist-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1280px) {
    .home-random-artists-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .home-random-artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-random-artists-panel {
        padding: 16px;
        border-radius: 24px;
    }

    .home-random-artists-header {
        margin-bottom: 12px;
        padding-bottom: 0;
    }

    .home-random-artists-header-copy h3 {
        font-size: 1.12rem;
    }

    .home-random-artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
