/* =========================================== */
/* JANNA ARTISTS - PREMIUM TEAL THEME */
/* FIXED: All colors updated to teal palette */
/* Enhanced visibility with better contrast */
/* =========================================== */

:root {
    --teal-primary: #27C7C9;        /* Main teal color */
    --teal-secondary: #1BA1A3;      /* Darker teal */
    --teal-dark: #0E7A7C;          /* Dark teal for accents */
    --teal-light: #D4F4F5;         /* Light teal for backgrounds */
    --teal-bright: #5DE7E9;        /* Bright teal for highlights */
    --teal-gradient: linear-gradient(135deg, #27C7C9 0%, #1BA1A3 50%, #0E7A7C 100%);
    --teal-shadow: 0 5px 15px rgba(39, 199, 201, 0.4);
    --dark-bg: #0F0F0F;
    --dark-card: #1A1A1A;
    --dark-text: #E0E0E0;
    --dark-border: #333333;
    --premium-teal: #27C7C9;
    --premium-silver: #C0C0C0;
    --premium-bronze: #CD7F32;
    --premium-gradient: linear-gradient(135deg, #27C7C9 0%, #1BA1A3 100%);
    --premium-dark: #0A1A1A;       /* Dark teal-tinged background */
    --premium-card: #0F2A2A;       /* Teal card background */
    --premium-accent: #083B3C;     /* Darker teal accent */
    --text-primary: #FFFFFF;
    --text-secondary: #E0F7FA;     /* Light teal tint for secondary text */
    --text-tertiary: #B0BEC5;
    --section-bg: #0F2A2A;         /* Unified teal section background */
    --section-text: #FFFFFF;
    --header-gradient: linear-gradient(90deg, #27C7C9 0%, #1BA1A3 100%); /* Teal gradient */
    
    /* Social media colors for better visibility */
    --facebook: #1877F2;
    --twitter: #1DA1F2;
    --instagram: #E4405F;
    --youtube: #FF0000;
    --spotify: #1DB954;
    --soundcloud: #FF3300;
}

/* Premium Animations - Updated to teal */
@keyframes tealGlow {
    0% { box-shadow: 0 0 10px rgba(39, 199, 201, 0.6); }
    50% { box-shadow: 0 0 25px rgba(39, 199, 201, 0.9); }
    100% { box-shadow: 0 0 10px rgba(39, 199, 201, 0.6); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes pulseHighlight {
    0% { box-shadow: 0 0 0 rgba(39, 199, 201, 0); }
    50% { box-shadow: 0 0 25px rgba(39, 199, 201, 0.6); }
    100% { box-shadow: 0 0 0 rgba(39, 199, 201, 0); }
}

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

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

/* =========================================== */
/* PREMIUM ARTIST PAGE - PRO LAYOUT */
/* =========================================== */

.premium-artist-page {
    background: var(--premium-dark);
    color: var(--section-text);
    position: relative;
    padding-bottom: 180px;
}

/* Premium Header */
.premium-header-area {
    background: linear-gradient(135deg, rgba(10, 26, 26, 0.95) 0%, rgba(15, 42, 42, 0.95) 100%);
    padding: 20px 0;
    border-bottom: 2px solid var(--teal-primary);
    margin-bottom: 30px;
}

.premium-announcement-banner {
    background: var(--header-gradient);
    color: var(--section-text);
    padding: 15px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}

/* Premium Badges */
.premium-badges-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.premium-badge-premium,
.premium-badge-verified,
.premium-badge-featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite ease-in-out;
}

.premium-badge-premium {
    background: var(--premium-gradient);
    color: #000;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.premium-badge-verified {
    background: linear-gradient(135deg, #1DB954 0%, #1ED760 100%);
    color: var(--section-text);
}

/* Premium Stats - FIXED: Mobile Layout */
.premium-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.premium-stat {
    background: var(--section-bg);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid var(--premium-accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--premium-gradient);
}

.premium-stat:hover {
    transform: translateY(-5px);
    border-color: var(--teal-primary);
    box-shadow: var(--teal-shadow);
}

.premium-stat i {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--teal-bright);
}

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

.stat-content strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--teal-bright);
}

.stat-content span {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Navigation */
.artist-premium-nav {
    background: var(--section-bg);
    border-bottom: 1px solid var(--premium-accent);
    padding: 0;
    margin: 30px 0;
}

.premium-nav-tabs {
    display: flex;
    overflow-x: auto;
    padding: 0;
    margin: 0;
}

.nav-tab {
    padding: 20px 25px;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tab:hover,
.nav-tab.active {
    color: var(--teal-bright);
    border-bottom-color: var(--teal-primary);
    background: rgba(39, 199, 201, 0.15);
}

.nav-tab i {
    font-size: 16px;
}

.exclusive-tab {
    background: linear-gradient(90deg, transparent 0%, rgba(39, 199, 201, 0.15) 100%);
    color: var(--teal-bright);
    font-weight: 700;
}

/* Premium Sections */
.premium-section {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--premium-accent);
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--premium-gradient);
}

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

.section-header h2 {
    color: var(--teal-bright);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--teal-primary);
}

.view-all {
    color: var(--teal-bright);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--teal-primary);
    gap: 10px;
}

/* Tracks List */
.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-item {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(39, 199, 201, 0.1);
    transform: translateX(5px);
}

.track-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--teal-bright);
    min-width: 30px;
}

.track-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

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

.track-img.placeholder {
    background: var(--teal-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--section-text);
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.track-title a {
    color: var(--section-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.track-title a:hover {
    color: var(--teal-bright);
}

.track-artists {
    font-size: 12px;
    color: var(--text-secondary);
}

.track-artists a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.track-artists a:hover {
    color: var(--teal-bright);
}

.track-plays {
    font-size: 12px;
    color: var(--teal-light);
}

.track-actions {
    display: flex;
    gap: 10px;
}

.btn-play-track,
.btn-view-track,
.btn-add-to-playlist {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--teal-gradient);
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
}

.btn-view-track {
    background: rgba(39, 199, 201, 0.2);
    color: var(--teal-bright);
    border: 1px solid rgba(39, 199, 201, 0.3);
}

.btn-play-track:hover,
.btn-view-track:hover {
    transform: scale(1.1);
    animation: tealGlow 2s infinite;
}

/* Premium Grids */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.premium-album {
    background: rgba(39, 199, 201, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 199, 201, 0.2);
}

.premium-album:hover {
    transform: translateY(-10px);
    border-color: var(--teal-primary);
    box-shadow: var(--teal-shadow);
}

.premium-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-stats {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10, 26, 26, 0.9);
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--teal-bright);
    font-size: 12px;
    border: 1px solid rgba(39, 199, 201, 0.3);
}

.album-tracks {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Premium Widgets */
.premium-widget {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--premium-accent);
}

.premium-widget h3 {
    color: var(--teal-bright);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-widget h3 i {
    color: var(--teal-primary);
}

/* Quick Stats */
.artist-quick-stats {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--premium-accent);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(39, 199, 201, 0.2);
}

.quick-stat:last-child {
    border-bottom: none;
}

.quick-stat i {
    font-size: 24px;
    color: var(--teal-bright);
    min-width: 30px;
}

.stat-progress {
    width: 100px;
    height: 8px;
    background: rgba(39, 199, 201, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--teal-gradient);
    border-radius: 4px;
}

.stat-value {
    color: var(--teal-bright);
    font-weight: 700;
    font-size: 18px;
}

/* Artist Actions */
.artist-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.btn-premium-subscribe,
.btn-share-artist,
.btn-follow-artist {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-premium-subscribe {
    background: var(--teal-gradient);
    color: black;
    font-weight: 700;
}

.btn-share-artist {
    background: rgba(39, 199, 201, 0.15);
    color: var(--teal-bright);
    border: 1px solid rgba(39, 199, 201, 0.3);
}

.btn-follow-artist {
    background: var(--header-gradient);
    color: var(--section-text);
}

.btn-follow-artist.following {
    background: linear-gradient(135deg, #1DB954 0%, #1ED760 100%);
}

.btn-premium-subscribe:hover,
.btn-share-artist:hover,
.btn-follow-artist:hover {
    transform: translateY(-3px);
    box-shadow: var(--teal-shadow);
}

/* Premium Social - Updated with social brand colors */
.premium-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.premium-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--social-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.premium-social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Social color classes */
.facebook { --social-color: var(--facebook); }
.twitter { --social-color: var(--twitter); }
.instagram { --social-color: var(--instagram); }
.youtube { --social-color: var(--youtube); }
.spotify { --social-color: var(--spotify); }
.soundcloud { --social-color: var(--soundcloud); }

/* Modals */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 26, 0.9);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.share-modal {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--teal-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.modal-header h3 {
    color: var(--teal-bright);
    font-size: 24px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--teal-bright);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--teal-primary);
    transform: scale(1.1);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: var(--premium-accent);
    color: var(--teal-bright);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-option:hover {
    background: var(--teal-gradient);
    color: black;
    transform: translateY(-3px);
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.featured-item {
    background: rgba(39, 199, 201, 0.08);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 199, 201, 0.15);
}

.featured-item:hover {
    background: rgba(39, 199, 201, 0.15);
    transform: translateY(-5px);
}

.featured-item i {
    font-size: 40px;
    color: var(--teal-bright);
    margin-bottom: 15px;
}

.featured-item h3 {
    color: var(--teal-bright);
    margin-bottom: 10px;
    font-size: 18px;
}

.featured-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Biography Read More */
.artist-biography-content {
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
}

.biography-truncated {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: max-height 0.5s ease;
}

.biography-truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--section-bg) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.biography-truncated.expanded {
    max-height: none;
}

.biography-truncated.expanded::after {
    opacity: 0;
}

.premium-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-gradient);
    color: black !important;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    text-decoration: none;
    box-shadow: var(--teal-shadow);
    position: relative;
    overflow: hidden;
}

.premium-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.premium-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 199, 201, 0.6);
}

.premium-read-more:hover::before {
    left: 100%;
}

.premium-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: black !important;
}

.premium-read-more.expanded i {
    transform: rotate(180deg);
}

/* Artist Details */
.premium-details {
    background: var(--section-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--premium-accent);
}

.premium-details h3 {
    color: var(--teal-bright) !important;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-details h3 i {
    color: var(--teal-primary);
}

.artist-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artist-meta li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(39, 199, 201, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.artist-meta li:hover {
    background: rgba(39, 199, 201, 0.08);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 8px;
}

.artist-meta li:last-child {
    border-bottom: none;
}

.artist-meta strong {
    color: var(--teal-light);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.artist-meta span {
    color: var(--teal-bright);
    font-weight: 700;
    font-size: 15px;
}

/* =========================================== */
/* SINGLE ARTIST PAGE - SEPARATE COVER IMAGE */
/* =========================================== */

.janna-artist-single {
    background: var(--premium-dark);
    color: var(--section-text);
    min-height: 100vh;
    padding-bottom: 180px;
}

/* Artist Hero Section with SEPARATE COVER IMAGE */
.janna-artist-single .artist-hero {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.janna-artist-single .artist-cover {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 26, 26, 0.9), rgba(15, 42, 42, 0.9));
}

.janna-artist-single .artist-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(39, 199, 201, 0.1) 0%, 
        rgba(10, 26, 26, 0.9) 100%);
    z-index: 1;
}

/* Cover image - full width, cropped */
.janna-artist-single .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease;
    display: block;
}

.janna-artist-single:hover .cover-image {
    transform: scale(1.05);
}

/* Cover placeholder */
.janna-artist-single .cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A1A1A, #0F2A2A);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.janna-artist-single .cover-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 199, 201, 0.15), transparent);
    animation: shimmer 3s infinite;
}

.janna-artist-single .placeholder-content {
    text-align: center;
    color: var(--teal-light);
    z-index: 1;
}

.janna-artist-single .placeholder-content i {
    font-size: 60px;
    color: var(--teal-primary);
    margin-bottom: 15px;
    display: block;
}

.janna-artist-single .placeholder-content span {
    font-size: 24px;
    font-weight: 600;
    display: block;
    color: var(--teal-bright);
}

.janna-artist-single .artist-profile {
    position: relative;
    max-width: 1400px;
    margin: -150px auto 0;
    padding: 0 30px;
    display: flex;
    align-items: flex-end;
    gap: 50px;
    z-index: 2;
}

/* Profile image - SEPARATE from cover */
.janna-artist-single .profile-image {
    flex-shrink: 0;
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid var(--teal-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 42, 42, 0.9), rgba(27, 161, 163, 0.9));
    box-shadow: var(--teal-shadow);
    transition: all 0.5s ease;
}

/* Remove badges from profile-image container */
.janna-artist-single .profile-image .premium-badge {
    display: none !important;
}

/* Profile Avatar - FULL IMAGE VISIBLE */
.janna-artist-single .avatar {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transition: all 0.5s ease;
    position: relative;
}

.janna-artist-single .avatar:hover {
    transform: scale(1.05);
    animation: tealGlow 2s infinite;
}

.janna-artist-single .avatar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--teal-bright);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.janna-artist-single .avatar:hover::after {
    opacity: 1;
}

.janna-artist-single .avatar-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--teal-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--teal-primary);
    box-shadow: var(--teal-shadow);
    position: relative;
    overflow: hidden;
}

.janna-artist-single .avatar-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.janna-artist-single .avatar-placeholder .initial {
    font-size: 100px;
    font-weight: 900;
    color: var(--section-text);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1;
}

/* Artist Info Section - Badges positioned here */
.janna-artist-single .artist-info {
    flex: 1;
    padding-bottom: 40px;
    position: relative;
    min-height: 250px;
}

.janna-artist-single .artist-name {
    font-size: 56px;
    font-weight: 900;
    color: var(--section-text);
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    padding-right: 200px;
}

/* Additional artist info fields */
.janna-artist-single .artist-real-name {
    font-size: 24px;
    color: var(--teal-light);
    margin: 0 0 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.janna-artist-single .artist-genre {
    font-size: 18px;
    color: var(--teal-bright);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.janna-artist-single .artist-label {
    font-size: 16px;
    color: var(--teal-light);
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.janna-artist-single .artist-location {
    font-size: 18px;
    color: var(--teal-bright);
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.janna-artist-single .artist-location i,
.janna-artist-single .artist-genre i,
.janna-artist-single .artist-label i {
    font-size: 20px;
    color: var(--teal-primary);
}

.janna-artist-single .artist-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.janna-artist-single .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(39, 199, 201, 0.15);
    color: var(--teal-bright);
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(39, 199, 201, 0.3);
}

.janna-artist-single .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.janna-artist-single .social-link i {
    position: relative;
    z-index: 1;
}

.janna-artist-single .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: black;
    border-color: var(--teal-primary);
}

.janna-artist-single .social-link:hover::before {
    opacity: 1;
}

.janna-artist-single .artist-content {
    padding: 60px 0;
    background: var(--premium-dark);
}

.janna-artist-single .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.janna-artist-single .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: 50px;
}

.janna-artist-single .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.janna-artist-single .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Verified status in meta list */
.verified-status {
    color: var(--teal-bright) !important;
    font-weight: 700 !important;
}

/* =========================================== */
/* ENHANCED BIOGRAPHY & DETAILS DESIGN - TEAL STYLING */
/* =========================================== */

/* Enhanced Biography - TEAL BACKGROUND & TEXT */
.enhanced-biography {
    background: var(--section-bg) !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--teal-primary);
    position: relative;
    box-shadow: var(--teal-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-biography:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 199, 201, 0.35);
}

.biography-header {
    background: var(--header-gradient);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.biography-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite linear;
}

.biography-header h2 {
    color: var(--section-text) !important;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.biography-badge {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--section-text);
    position: relative;
    z-index: 1;
}

.biography-content {
    padding: 30px;
    background: var(--section-bg) !important;
}

.biography-text {
    color: var(--text-secondary) !important;
    line-height: 1.8;
    font-size: 16px;
}

.biography-excerpt {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary) !important;
}

.biography-excerpt p {
    margin-bottom: 15px;
    color: var(--text-secondary) !important;
}

.biography-full {
    font-size: 16px;
    margin-top: 20px;
    color: var(--text-secondary) !important;
    display: none;
}

.biography-full p {
    margin-bottom: 15px;
    color: var(--text-secondary) !important;
}

.biography-full.active {
    display: block;
}

.no-biography {
    text-align: center;
    padding: 40px 20px;
    color: var(--teal-light) !important;
    font-size: 18px;
    font-style: italic;
    background: rgba(39, 199, 201, 0.08);
    border-radius: 10px;
    border: 1px dashed rgba(39, 199, 201, 0.3);
}

/* FIX 2: SIMILAR ARTISTS STYLING - TEAL VERSION */
.similar-artists {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 0 !important;
    margin-bottom: 20px;
    border: 1px solid rgba(39, 199, 201, 0.3);
    overflow: hidden;
}

.similar-header {
    background: var(--header-gradient);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px 15px 0 0;
}

.similar-header h3 {
    color: var(--section-text) !important;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.similar-header h3 i {
    color: var(--teal-bright);
}

.similar-badge {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--section-text);
}

.similar-artists-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px !important;
    margin: 0;
    background: var(--section-bg);
}

.similar-artist {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(39, 199, 201, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 1px solid rgba(39, 199, 201, 0.15);
}

.similar-artist:hover {
    background: rgba(39, 199, 201, 0.15);
    transform: translateX(5px);
    text-decoration: none;
}

.similar-artist:last-child {
    margin-bottom: 0;
}

.similar-artist-image {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.similar-artist-img.placeholder {
    width: 100%;
    height: 100%;
    background: var(--teal-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--section-text);
    font-weight: bold;
    font-size: 24px;
}

.similar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.similar-artist:hover .similar-overlay {
    opacity: 1;
}

.similar-overlay i {
    color: var(--teal-bright);
    font-size: 20px;
}

.similar-artist-info {
    flex: 1;
    min-width: 0;
}

.similar-artist-name {
    display: block;
    color: var(--teal-bright) !important;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.similar-artist-plays {
    display: block;
    color: var(--teal-light) !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.similar-artist-plays i {
    color: var(--teal-primary);
    margin-right: 5px;
}

.no-similar {
    text-align: center;
    padding: 30px 20px;
    color: var(--teal-light);
    font-size: 16px;
    font-style: italic;
    background: rgba(39, 199, 201, 0.08);
    border-radius: 10px;
    border: 1px dashed rgba(39, 199, 201, 0.3);
    margin: 0;
}

/* FIX 3: ARTIST DETAILS & BIOGRAPHY TEXT STYLING - TEAL */
.enhanced-details .details-content {
    padding: 25px;
    background: var(--section-bg) !important;
}

.enhanced-details .artist-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enhanced-details .artist-meta li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(39, 199, 201, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.enhanced-details .artist-meta li:last-child {
    border-bottom: none;
}

.enhanced-details .artist-meta li:hover {
    background: rgba(39, 199, 201, 0.08);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 -15px;
    border-radius: 10px;
}

.enhanced-details .meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.enhanced-details .meta-icon {
    width: 45px;
    height: 45px;
    background: var(--teal-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
    box-shadow: var(--teal-shadow);
}

.enhanced-details .meta-content {
    flex: 1;
    min-width: 0;
}

.enhanced-details .meta-label {
    display: block;
    font-size: 13px;
    color: var(--teal-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.enhanced-details .meta-value {
    display: block;
    font-size: 16px;
    color: var(--teal-bright) !important;
    font-weight: 700;
}

/* =========================================== */
/* FIX: ARTIST DETAILS HEADER VISIBILITY */
/* =========================================== */

.enhanced-details {
    background: var(--section-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--teal-primary);
    position: relative;
    box-shadow: var(--teal-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 199, 201, 0.35);
}

.enhanced-details .details-header {
    background: var(--header-gradient);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.enhanced-details .details-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite linear;
}

.enhanced-details .details-header h3 {
    color: var(--section-text) !important;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.enhanced-details .details-header h3 i {
    color: var(--teal-bright);
}

.enhanced-details .details-badge {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--section-text);
    position: relative;
    z-index: 1;
}

.enhanced-details .details-content {
    padding: 30px;
    background: var(--section-bg) !important;
}

/* =========================================== */
/* FOOTER AUDIO PLAYER - TEAL THEME */
/* =========================================== */

.audio-player-footer {
    position: fixed;
    bottom: 0 !important;
    left: 0;
    right: 0;
    background: var(--premium-card);
    border-top: 2px solid var(--teal-primary);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    height: 80px;
    display: flex !important;
    align-items: center;
    visibility: hidden;
}

.audio-player-footer.active {
    transform: translateY(0) !important;
    visibility: visible !important;
    display: flex !important;
}

.player-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.player-left {
    flex: 0 0 30%;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.song-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--teal-gradient);
    flex-shrink: 0;
    position: relative;
}

.player-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
}

.player-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-gradient);
    color: black;
    display: none;
}

.player-thumb-placeholder i {
    font-size: 20px;
}

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

.song-title {
    color: var(--teal-bright);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.song-artist {
    color: var(--teal-light);
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.player-center {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.control-btn {
    background: none;
    border: none;
    color: var(--teal-bright);
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.control-btn:hover {
    background: rgba(39, 199, 201, 0.15);
    transform: scale(1.1);
}

.play-btn {
    background: var(--teal-primary);
    color: black;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: bold;
}

.play-btn:hover {
    background: var(--teal-bright);
    transform: scale(1.1);
}

.player-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    display: none;
}

.current-time,
.duration {
    color: var(--teal-light);
    font-size: 11px;
    font-weight: 600;
    min-width: 35px;
    text-align: center;
}

.progress-bar-container {
    flex: 1;
    height: 4px;
    background: rgba(39, 199, 201, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--teal-gradient);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-right {
    flex: 0 0 30%;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

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

.volume-btn {
    background: none;
    border: none;
    color: var(--teal-bright);
    font-size: 16px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.volume-slider-container {
    width: 60px;
    height: 4px;
    background: rgba(39, 199, 201, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    display: none;
}

.volume-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--teal-gradient);
    border-radius: 2px;
    width: 70%;
}

.player-close {
    background: none;
    border: none;
    color: var(--teal-light);
    font-size: 14px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.player-close:hover {
    background: rgba(39, 199, 201, 0.15);
    color: var(--teal-bright);
}

/* =========================================== */
/* PREMIUM LOADING & UTILITIES - TEAL */
/* =========================================== */

.artists-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(39, 199, 201, 0.2);
    border-top-color: var(--teal-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--teal-shadow);
    transition: all 0.3s ease;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    font-weight: bold;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 199, 201, 0.6);
}

/* =========================================== */
/* PREMIUM SCROLLBAR - TEAL */
/* =========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--premium-card);
}

::-webkit-scrollbar-thumb {
    background: var(--teal-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-primary);
}

/* =========================================== */
/* RESPONSIVE DESIGN - UPDATED */
/* =========================================== */

@media (max-width: 1200px) {
    .janna-artist-single .artist-profile {
        max-width: 100%;
        margin: -120px 20px 0;
    }
    
    .janna-artist-single .artist-name {
        padding-right: 150px;
    }
    
    .premium-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .janna-artist-single .row {
        flex-direction: column;
    }
    
    .janna-artist-single .col-md-8,
    .janna-artist-single .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .janna-artist-single .artist-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -80px;
        gap: 30px;
    }
    
    .janna-artist-single .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .janna-artist-single .avatar,
    .janna-artist-single .avatar-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .janna-artist-single .avatar-placeholder .initial {
        font-size: 80px;
    }
    
    .janna-artist-single .artist-name {
        font-size: 42px;
        padding-right: 0;
    }
    
    .janna-artist-single .artist-real-name {
        font-size: 20px;
    }
    
    .janna-artist-single .artist-info {
        position: relative;
        min-height: auto;
    }
    
    .janna-artist-single .artist-cover {
        height: 350px;
    }
    
    .premium-nav-tabs {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    
    .nav-tab {
        padding: 15px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .janna-artist-single .artist-cover {
        height: 300px;
    }
    
    .janna-artist-single .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .janna-artist-single .avatar,
    .janna-artist-single .avatar-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .janna-artist-single .avatar-placeholder .initial {
        font-size: 70px;
    }
    
    .janna-artist-single .artist-name {
        font-size: 36px;
    }
    
    .janna-artist-single .artist-real-name {
        font-size: 18px;
    }
    
    .janna-artist-single .artist-social {
        justify-content: center;
    }
    
    .premium-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin: 20px 0 !important;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .view-all {
        align-self: flex-end;
    }
    
    .track-item {
        grid-template-columns: auto 1fr auto;
    }
    
    .track-number {
        display: none;
    }
    
    .artist-actions {
        flex-direction: column;
    }
    
    .btn-premium-subscribe,
    .btn-share-artist,
    .btn-follow-artist {
        width: 100%;
        justify-content: center;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    /* Audio player mobile */
    .audio-player-footer {
        bottom: 60px !important;
        height: 70px !important;
    }
    
    .audio-player-footer.active {
        height: 70px !important;
    }
    
    .player-container {
        padding: 0 12px !important;
        gap: 8px;
    }
    
    .player-left {
        flex: 0 0 45% !important;
        min-width: 0 !important;
    }
    
    .player-center {
        flex: 0 0 35% !important;
        gap: 6px;
    }
    
    .player-right {
        flex: 0 0 20% !important;
        min-width: 0 !important;
        justify-content: flex-end !important;
        gap: 10px !important;
    }
    
    .song-thumb {
        width: 45px !important;
        height: 45px !important;
    }
    
    .song-title {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }
    
    .song-artist {
        font-size: 11px !important;
    }
    
    .player-controls {
        gap: 12px;
    }
    
    .control-btn {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
    
    .play-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .volume-btn {
        font-size: 14px;
        width: 26px;
        height: 26px;
    }
    
    .player-close {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .player-progress,
    .volume-slider-container {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 140px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .janna-artist-single .container {
        padding: 0 20px;
    }
    
    .janna-artist-single .artist-profile {
        margin: -60px 15px 0;
        gap: 20px;
    }
    
    .janna-artist-single .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .janna-artist-single .avatar,
    .janna-artist-single .avatar-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .janna-artist-single .avatar-placeholder .initial {
        font-size: 60px;
    }
    
    .janna-artist-single .artist-name {
        font-size: 28px;
    }
    
    .janna-artist-single .artist-real-name {
        font-size: 16px;
    }
    
    .premium-section {
        padding: 15px;
    }
    
    .premium-widget {
        padding: 15px;
    }
    
    .nav-tab {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .premium-badge-premium,
    .premium-badge-verified {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Audio player small mobile */
    .audio-player-footer {
        bottom: 60px !important;
        height: 65px !important;
    }
    
    .audio-player-footer.active {
        height: 65px !important;
    }
    
    .player-container {
        padding: 0 10px !important;
        gap: 6px;
    }
    
    .player-left {
        flex: 0 0 50% !important;
    }
    
    .player-center {
        flex: 0 0 30% !important;
        gap: 4px;
    }
    
    .player-right {
        flex: 0 0 20% !important;
        gap: 8px !important;
    }
    
    .song-thumb {
        width: 40px !important;
        height: 40px !important;
    }
    
    .song-title {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }
    
    .song-artist {
        font-size: 10px !important;
    }
    
    .player-controls {
        gap: 10px;
    }
    
    .control-btn {
        font-size: 14px;
        width: 30px;
        height: 30px;
    }
    
    .play-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .volume-btn {
        font-size: 13px;
        width: 24px;
        height: 24px;
    }
    
    .player-close {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .back-to-top {
        bottom: 135px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Desktop only - player at very bottom */
@media (min-width: 769px) {
    .audio-player-footer {
        bottom: 0 !important;
    }
}

/* =========================================== */
/* ALL FIXES APPLIED - COMPLETE TEAL THEME */
/* =========================================== */