@import url('vars.css');
@import url('grid_system.css');
@import url('ads.css');
@import url('ui_improvements.css');
@import url('premium_hero.css');
@import url('artist_cards.css');

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    
    box-sizing: border-box;
    width: 100%;
}

.site-header-global {
    background-color: var(--color-bg-main);
    
    border-bottom: 1px solid var(--color-border);
    padding: 0.9375rem 0;
    margin-bottom: 1rem;
    box-shadow: 0 2px 0.625rem rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    
}

.site-header-global.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 2.8125rem;
    vertical-align: middle;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: inline-block;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: inline-block;
}

.mini-search-box {
    position: relative;
    width: 100%;
    max-width: 25rem;
    margin: 0 1.25rem;
}

.mini-search-box input {
    width: 100%;
    background: var(--color-bg-secondary);
    border: 1px solid transparent;
    border-radius: 1.25rem;
    padding: 0.5rem 2.5rem 0.5rem 0.9375rem;
    font-size: 0.9em;
    outline: none;
    transition: 0.2s;
    color: var(--color-text-main);
}

.mini-search-box input:focus {
    background: var(--color-bg-main);
    border-color: var(--color-brand-blue);
    box-shadow: 0 2px 0.625rem rgba(0, 0, 0, 0.05);
}

.mini-search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.mini-search-box button:hover {
    color: var(--color-brand-blue);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95em;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--color-brand-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-left: 1.25rem;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    color: var(--color-text-secondary);
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}

.btn-icon:hover {
    background: var(--color-bg-secondary);
    color: var(--color-brand-blue);
}

.lang-badge {
    font-size: 0.8em;
    font-weight: 700;
    color: var(--color-text-main);
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 0.25rem 0.5rem;
    border-radius: 0.3125rem;
    cursor: pointer;
    
    transition: 0.2s;
    font-family: inherit;
}

.lang-badge:hover {
    background: var(--color-bg-secondary);
    color: var(--color-brand-blue);
    border-color: var(--color-brand-blue);
}

.mobile-menu-btn {
    display: flex;
    
}

::-webkit-scrollbar {
    width: 0.625rem;
    
    height: 0.625rem;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-brand-blue);
    border-radius: 0.625rem;
    border: 2px solid var(--color-bg-main);
    
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-hover-blue);
}

a {
    text-decoration: none;
    color: var(--color-brand-blue);
    transition: color 0.2s;
}

a:hover {
    color: var(--color-hover-blue);
}

img {
    max-width: 100%;
    height: auto;
}

.site-footer {
    margin-top: auto;
    
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -18.75rem;
    
    width: 18.75rem;
    
    height: 100%;
    background: var(--color-bg-main);
    
    z-index: 1002;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.nav-drawer.active {
    right: 0;
}

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

.drawer-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-text-main);
}

.drawer-menu {
    list-style: none;
    padding: 1.25rem;
    margin: 0;
    overflow-y: auto;
}

.drawer-menu li {
    margin-bottom: 0.625rem;
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    
    padding: 0.75rem;
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.2s;
    font-weight: 500;
}

.drawer-menu li a:hover {
    background: var(--color-bg-secondary);
    color: var(--color-brand-blue);
}

.drawer-menu li a i {
    width: 1.5rem;
    text-align: center;
    color: var(--color-text-secondary);
}

.drawer-menu li a:hover i {
    color: var(--color-brand-blue);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding: 1.25rem;
}

.drawer-user-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.drawer-user-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.drawer-user-link:hover {
    background: var(--color-bg-secondary);
}

.drawer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.drawer-avatar-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.drawer-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.drawer-username {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.drawer-user-sub {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.drawer-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.drawer-logout-btn:hover {
    background: rgba(220, 53, 69, 0.18);
    color: #c82333;
}

.drawer-auth-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.drawer-auth-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.drawer-auth-login {
    background: var(--color-brand-blue);
    color: #fff;
}

.drawer-auth-login:hover {
    opacity: 0.9;
    color: #fff;
}

.drawer-auth-register {
    background: var(--color-bg-secondary);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.drawer-auth-register:hover {
    background: var(--color-border);
}

.hero-section {
    position: relative;
    padding: 5rem 1rem 4rem;
    margin-bottom: 3.75rem;
    border-radius: 1.5rem;
    overflow: hidden;
    text-align: center;
    background: var(--color-bg-secondary);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--color-text-main);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: none;
}

.hero-search-wrapper {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero-search-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-brand-blue);
}

.hero-search-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
    outline: none;
}

.hero-search-wrapper input::placeholder {
    color: #999;
}

.hero-search-wrapper button {
    background: var(--color-brand-blue);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search-wrapper button:hover {
    background: var(--color-hover-blue);
    transform: rotate(15deg);
}

.hero {
    display: none;
}

.artist-hero-inner {
    position: relative;
    z-index: 1;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.artist-image-wrapper {
    flex-shrink: 0;
    position: relative;
}

.artist-profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-left: 0;
    border-left: none;
    
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 28px;
    background: var(--color-brand-blue);
    border-radius: 10px;
    
    flex-shrink: 0;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.song-card {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    
    border-color: var(--color-brand-blue);
}

.song-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-blue);
    font-size: 1.25rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.song-card:hover .song-icon {
    background: var(--color-brand-blue);
    color: white;
    transform: scale(1.1);
}

.song-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.song-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-info span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 2rem;
    text-align: center;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.artist-img-wrapper {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--color-bg-main);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-bg-secondary);
}

.artist-card:hover .artist-img-wrapper {
    transform: scale(1.05);
    
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-brand-blue);
    
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-img-wrapper img {
    transform: scale(1.1);
    
}

.artist-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-main);
    transition: color 0.2s;
}

.artist-card:hover .artist-name {
    color: var(--color-brand-blue);
}

.genre-scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1.25rem;
    
    margin-bottom: 4rem;
    -webkit-overflow-scrolling: touch;
}

.genre-pill {
    background: var(--color-bg-secondary);
    color: var(--color-text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    white-space: nowrap;
    border: 1px solid var(--color-border);
    transition: all 0.2s;
    font-weight: 500;
    text-transform: capitalize;
}

.genre-pill:hover {
    background: var(--color-brand-blue);
    color: white;
    border-color: var(--color-brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
}

.community-cta {
    background: linear-gradient(135deg, var(--color-brand-blue), #8e44ad);
    border-radius: 1.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--color-brand-blue);
}

.btn-primary:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-brand-blue);
}

.site-footer {
    background: #ffffff;
    padding: 3.75rem 0 1.25rem;
    margin-top: 5rem;
    border-top: 1px solid #cacaca;
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .site-footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

.song-layout-grid {
    display: flex;
    gap: 2.5rem;
    
    align-items: flex-start;
    margin-bottom: 3.125rem;
    
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar-content {
    width: 23.75rem;
    
    max-width: 25rem;
    
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .song-layout-grid {
        flex-direction: column;
    }

    .sidebar-content {
        width: 100%;
        order: 0;
    }
}

.song-header {
    background: transparent;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.song-title-h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 0.3125rem 0;
    
    line-height: 1.1;
    letter-spacing: -0.031rem;
    
}

.song-artist-link {
    font-size: 1.3rem;
    color: var(--color-brand-green);
    font-weight: 700;
    text-decoration: none;
}

.song-artist-link:hover {
    text-decoration: underline;
}

.song-meta {
    margin-top: 0.625rem;
    
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    gap: 0.9375rem;
    
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.031rem;
    
}

.actions-row {
    margin-bottom: 1.875rem;
    
    display: flex;
    gap: 0.625rem;
    
    flex-wrap: wrap;
}

.btn-pill {
    padding: 0.5rem 1.125rem;
    
    border-radius: 0.375rem;
    
    border: 1px solid var(--color-border);
    background: var(--color-bg-main);
    color: var(--color-text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    transition: 0.2s;
}

.btn-pill:hover {
    border-color: var(--color-border);
    color: var(--color-text-main);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.content-box {
    font-size: 1.15rem;
    
    color: var(--color-text-main);
    font-family: inherit;
}

.verse {
    display: flex;
    flex-direction: column;

}

.verse span:first-child {
    font-size: 1.1em;
    font-weight: bold;

}

.romanization {
    font-size: 0.9em;
}

.sidebar-widget {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 1.5625rem;
    
}

.mini-player-box {
    background: var(--glass-bg);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    position: relative;
    border-radius: 1.5rem; /* 24px */
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-yt-frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls-bar {
    background: transparent;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.9rem;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    flex: 1;
    min-width: 0;
}

.controls-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    flex-shrink: 0;
}

.ctrl-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    min-width: 1.5625rem;
}

.ctrl-btn:hover {
    color: var(--color-brand-blue);
    transform: scale(1.1);
}

.ctrl-btn i {
    font-size: 1rem;
}

.ctrl-btn.btn-play-lg i {
    font-size: 1.3rem;
}

.volume-container {
    position: relative;
    display: flex;
    align-items: center;
}

.vol-slider-popup {
    position: absolute;
    bottom: 30px;
    
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    height: 100px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-container:hover .vol-slider-popup {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
    
}

.vol-slider {
    -webkit-appearance: none;
    width: 80px;
    
    height: 4px;
    background: #444;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    margin: 0;
    transform: rotate(-90deg);
    
}

.vol-slider:hover {
    background: #666;
}

.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.vol-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.vol-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
}

.ctrl-btn.active {
    color: #10b981 !important;
    
    background: rgba(16, 185, 129, 0.15);
    
    border-radius: 6px;
    transform: scale(1.05);
    
}

.progress-container {
    height: 0.1875rem;
    
    background: #333;
    width: 100%;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
    z-index: 10;
}

.progress-filled {
    height: 100%;
    background: #d4e900;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: -0.25rem;
    
    top: -0.1875rem;
    
    width: 0.5625rem;
    
    height: 0.5625rem;
    
    border-radius: 50%;
    background: #d4e900;
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-container:hover .progress-filled::after {
    opacity: 1;
}

.time-display {
    font-size: 0.7rem;
    color: #888;
    font-family: monospace;
    letter-spacing: 0px;
    white-space: nowrap;
    margin-left: 0.3125rem;
    
}

.playlist-section {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.playlist-header-row {
    padding: 0.75rem 0.9375rem;
    
    border-bottom: 1px solid var(--color-bg-secondary);
    background: var(--color-bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.radios-title {
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    text-transform: uppercase;
    letter-spacing: 0.031rem;
    
}

.radio-list-scroll {
    max-height: 25rem;
    
    overflow-y: auto;
}

.radio-item-row {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.9375rem;
    
    border-bottom: 1px solid var(--color-bg-secondary);
    cursor: pointer;
    transition: all 0.1s;
    font-size: 0.85rem;
    color: var(--color-text-main);
}

.radio-item-row:hover {
    background: var(--color-bg-secondary);
}

.radio-item-row.is-active {
    background: var(--color-bg-secondary);
    border-left: 3px solid var(--color-brand-blue);
}

.radio-idx {
    width: 30px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-align: center;
}

.radio-info {
    flex: 1;
    color: var(--color-text-secondary);
    padding-left: 5px;
}

.radio-info strong {
    color: var(--color-text-main);
    font-weight: 600;
}

.radio-playing-icon {
    color: var(--color-brand-blue);
    display: none;
    width: 30px;
    text-align: center;
    animation: pulse 1s infinite alternate;
}

.is-active .radio-playing-icon {
    display: block;
}

.is-active .radio-idx {
    display: none;
}

.is-active .radio-info {
    color: var(--color-brand-blue);
    font-weight: 500;
}

@keyframes pulse {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.footer-az-container {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.az-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.az-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.az-link {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.2s;
    background: var(--color-bg-main);
    border: 1px solid transparent;
}

.az-link:hover {
    background: var(--color-brand-blue);
    color: white;
    transform: translateY(-2px);
}

.footer-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2.5rem;
}

.footer-col h3 {
    color: var(--color-text-main);
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.1em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--color-brand-blue);
}

.social-links {
    display: flex;
    gap: 0.9375rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.social-links a:hover {
    background: var(--color-silver);
    color: white;
    border-color: var(--color-silver);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(148, 163, 184, 0.4);
}

.footer-bottom {
    max-width: 75rem;
    margin: 2.5rem auto 0;
    padding: 1.25rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.9em;
}

.album-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
}

.album-art-wrapper {
    flex-shrink: 0;
    width: 300px;
    
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.album-info {
    flex: 1;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.album-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.btn-action-hero {
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-decoration: none;
}

.btn-action-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-play-hero {
    background: var(--color-brand-blue);
    color: white;
    padding: 0.8rem 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-icon-hero {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-icon-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.filter-pills-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.filter-pills-scroll::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    background: var(--color-bg-secondary);
    
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    
    padding: 8px 16px;
    
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-pill:hover {
    background: var(--color-border);
    color: var(--color-text-main);
}

.filter-pill.active {
    background: var(--color-text-main);
    
    color: var(--color-bg-main);
    
    border-color: var(--color-text-main);
    font-weight: 600;
}

.album-hero-container {
    background: linear-gradient(to bottom, transparent, var(--color-bg-main));
}

.album-grid-card {
    background: transparent;
    border: none !important;
    text-decoration: none;
    display: block;
    cursor: pointer;
    margin-bottom: 2rem;
    text-align: center;
    
}

.album-grid-card .album-cover-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    
    border-radius: 50%;
    
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    background: #111;
    

    
    background: radial-gradient(circle, #1a1a1a 25%, #111 26%, #111 100%);
}

.album-grid-card img {
    position: absolute;
    top: 15%;
    
    left: 15%;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    
    transition: transform 10s linear;
    
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    
}

.album-cover-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12%;
    height: 12%;
    background: #181818;
    
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
}

.album-grid-card:hover .album-cover-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.album-grid-card:hover img {
    transform: rotate(360deg);
    
    transition: transform 3s linear infinite;
}

.album-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0.5rem 0 0.2rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
    padding: 0 0.5rem;
}

.album-grid-card:hover .album-title {
    color: var(--color-brand-blue);
}

.album-year {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.premium-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.premium-album-grid .col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

:root {
    --bio-container-width: 75rem;
    
    --bio-accent: var(--color-brand-blue);
    --bio-avatar-size: 13.75rem;
    
}

.bio-hero {
    position: relative;
    
    
    
    display: flex;
    align-items: flex-end;
    
    justify-content: center;
    overflow: hidden;
    background: #0f1115;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 20%;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: 0;
}

.bio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(15, 17, 21, 0.3) 0%,
            rgba(15, 17, 21, 0.6) 50%,
            rgba(15, 17, 21, 1) 95%);
    z-index: 1;
}

.bio-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--bio-container-width);
    padding: 2rem 0rem 2rem 0rem;
    display: flex;
    gap: 3rem;
    align-items: flex-end;
}

.bio-avatar {
    width: var(--bio-avatar-size);
    height: var(--bio-avatar-size);
    border-radius: 50%;
    border: 0.3125rem solid rgba(255, 255, 255, 0.15);
    
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.6);
    object-fit: cover;
    flex-shrink: 0;
    animation: bioFloat 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

@keyframes bioFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.625rem);
    }

    100% {
        transform: translateY(0);
    }
}

.bio-title-group h1 {
    font-size: 4rem;
    
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -2px;
    text-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
    
}

.bio-breadcrumbs {
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.bio-breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.2s;
}

.bio-breadcrumbs a:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--color-brand-blue);
}

.bio-layout {
    display: grid;
    grid-template-columns: 1fr 21.25rem;
    
    gap: 2rem;
    max-width: var(--bio-container-width);
    margin: 4rem auto;
    
}

.bio-text-column {
    font-family: 'Merriweather', serif;
    
    color: var(--color-text-main);
    font-size: 1.2rem;
    
    line-height: 1.9;
}

.bio-text-column p {
    margin-bottom: 1.875rem;
}

.bio-text-column strong {
    color: var(--color-text-main);
    font-weight: 700;
}

.bio-dropcap::first-letter {
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 1.25rem;
    padding-top: 0.3125rem;
    font-weight: 900;
    color: var(--bio-accent);
    font-family: 'Playfair Display', serif;
}

.bio-sidebar {
    position: sticky;
    top: 6.25rem;
    
    height: fit-content;
}

.bio-fact-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.bio-fact-title {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.bio-fact-item {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.9375rem;
    display: flex;
    flex-direction: column;
}

.bio-fact-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.bio-fact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.bio-fact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.bio-cta-box {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.08), transparent);
    border-left: 5px solid var(--color-brand-blue);
    border-radius: 0 1rem 1rem 0;
}

.bio-cta-btn {
    background: var(--color-brand-blue);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 3rem;
    font-weight: 600;
    font-family: 'Segoe UI', system-ui;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.bio-cta-btn:hover {
    background: var(--color-hover-blue);
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 1000px) {
    .bio-hero {
        height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .bio-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .bio-title-group h1 {
        font-size: 3rem;
    }

    .bio-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto;
    }

    .bio-sidebar {
        position: static;
    }

    .bio-breadcrumbs {
        justify-content: center;
    }
}

.bio-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.bio-btn:hover {
    background: white;
    color: var(--color-brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bio-btn-primary {
    background: var(--color-brand-blue);
    border-color: var(--color-brand-blue);
}

.bio-btn-primary:hover {
    background: var(--color-hover-blue);
    color: white;
}

.bio-ad-slot {
    
    
    padding: 1rem;
    background: var(--color-bg-secondary);
    border: 1px dashed var(--color-border);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.bio-ad-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-related-section {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.bio-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bio-section-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 1.5rem;
    background: var(--color-brand-blue);
    border-radius: 2px;
}

.bio-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bio-related-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: var(--color-bg-secondary);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bio-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.bio-related-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bio-related-card:hover img {
    transform: scale(1.05);
}

.bio-related-info {
    padding: 1rem;
    text-align: center;
}

.bio-related-info span {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.95rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .bio-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.btn-upload-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #e4e6eb;
    
    color: #050505;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #fff;
    
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-upload-avatar:hover {
    background: #d8dadf;
    transform: scale(1.05);
}

.btn-upload-avatar:active {
    transform: scale(0.95);
    background: #cdd0d5;
}

