/* AfroStream Pro Frontend Styles */
.afrostream-grid {
    display: grid;
    grid-gap: 20px;
    margin: 20px 0;
}

.afrostream-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.afrostream-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.afrostream-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

.music-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.music-thumb {
    height: 200px;
    overflow: hidden;
}

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

.music-info {
    padding: 15px;
}

.music-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.music-info h4 a {
    color: #333;
    text-decoration: none;
}

.music-info h4 a:hover {
    color: #0073aa;
}

.music-info .artist {
    color: #666;
    margin: 0 0 10px;
    font-size: 14px;
}

.music-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.music-actions {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.play-btn, .download-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.play-btn:hover, .download-btn:hover {
    background: #005a87;
}

.afrostream-single-player {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.player-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls button:hover {
    background: rgba(255,255,255,0.3);
}

.progress-container {
    flex: 1;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.8;
}

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

.volume-slider {
    width: 80px;
}

.player-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.player-info p {
    margin: 0;
    opacity: 0.9;
}

.player-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.download-btn, .share-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn:hover, .share-btn:hover {
    background: rgba(255,255,255,0.3);
}

.play-count {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    opacity: 0.8;
}

.artists-grid {
    display: grid;
    grid-gap: 20px;
}

.artist-card {
    text-align: center;
}

.artist-card a {
    text-decoration: none;
    color: inherit;
}

.artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #0073aa;
}

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

.artist-info h3 {
    margin: 0 0 5px;
}

.verified-badge {
    color: #1DA1F2;
    margin-left: 5px;
}

.afrostream-upload-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.upload-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.upload-button:hover {
    background: #005a87;
}

.upload-progress {
    margin-top: 20px;
}

.upload-message .success {
    color: #46b450;
    padding: 10px;
    background: #f0f7f1;
    border-radius: 4px;
    margin-top: 15px;
}

.upload-message .error {
    color: #dc3232;
    padding: 10px;
    background: #f7f0f0;
    border-radius: 4px;
    margin-top: 15px;
}

.artist-dashboard {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #0073aa;
}

.stat-card h3 {
    margin: 0;
    font-size: 32px;
    color: #0073aa;
}

.stat-card p {
    margin: 5px 0 0;
    color: #666;
}

.dashboard-tabs {
    margin-top: 30px;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-nav li {
    margin: 0;
}

.tab-nav a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-nav li.active a {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.music-table th,
.music-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.music-table th {
    background: #f8f9fa;
    font-weight: bold;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.status-published {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.button-small {
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 5px;
}

.popular-music-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popular-track {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.popular-track:last-child {
    border-bottom: none;
}

.popular-track:hover {
    background: #f8f9fa;
}

.track-number {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    width: 40px;
    text-align: center;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    margin: 0 0 5px;
}

.track-info h4 a {
    color: #333;
    text-decoration: none;
}

.track-info .artist {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.track-stats {
    margin-right: 20px;
    color: #888;
    font-size: 14px;
}

.latest-music-timeline {
    position: relative;
    padding-left: 30px;
}

.latest-music-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0073aa;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0073aa;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #0073aa;
}

.timeline-time {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.timeline-content {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .afrostream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-controls {
        flex-wrap: wrap;
    }
    
    .volume-control {
        display: none;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .afrostream-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-track {
        flex-wrap: wrap;
    }
    
    .track-number {
        width: 30px;
    }
}

/* Homepage Specific Styles */
.afrostream-homepage {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.afrostream-hero {
    color: white;
    margin-bottom: 50px;
}

.hero-background {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.hero-search form {
    position: relative;
}

.hero-search input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #0073aa;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search button:hover {
    background: #005a87;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Home Sections */
.home-section {
    padding: 60px 0;
}

.section-alt {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: #0073aa;
}

.view-all {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    text-decoration: underline;
}

/* Charts Section */
.charts-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.chart-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: #e9ecef;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0073aa;
    color: white;
}

.top-charts {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.charts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-genres, .weekly-artist {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.genre-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.genre-list li:last-child {
    border-bottom: none;
}

.genre-name {
    font-weight: 600;
}

.genre-count {
    color: #666;
    font-size: 14px;
}

.artist-spotlight {
    text-align: center;
}

.artist-spotlight .artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #0073aa;
}

.artist-spotlight .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-spotlight h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.artist-location {
    color: #666;
    margin: 0 0 15px;
    font-size: 14px;
}

.artist-link {
    display: inline-block;
    padding: 8px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.artist-link:hover {
    background: #005a87;
}

/* Artist CTA */
.artist-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.artist-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,115,170,0.3);
}

.btn-secondary {
    background: white;
    color: #0073aa;
    border: 2px solid #0073aa;
}

.btn-secondary:hover {
    background: #0073aa;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.genre-card {
    padding: 30px 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: white;
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.genre-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.genre-card p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: #0073aa;
    margin-bottom: 20px;
}

.step h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    position: relative;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #0073aa;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

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

/* CTA Section */
.home-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .home-section {
        padding: 40px 0;
    }
    
    .hero-background {
        padding: 60px 20px;
    }
    
    .chart-filters {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* Template Specific Styles */
.afrostream-artist-profile,
.afrostream-single-music,
.afrostream-music-archive,
.afrostream-artist-archive,
.afrostream-home-sections {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Common Header Styles */
.artist-header, .music-header, .archive-header {
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.artist-header-content,
.music-header-content,
.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.artist-avatar-large {
    position: relative;
    flex-shrink: 0;
}

.artist-avatar-large img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.verified-badge-large {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #1DA1F2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

/* Navigation Tabs */
.artist-navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.artist-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    padding: 15px 0;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Music Grid/List */
.artist-music-grid,
.music-grid .grid,
.artists-grid .grid {
    display: grid;
    gap: 20px;
}

.artist-track-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.artist-track-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.track-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    width: 40px;
    text-align: center;
}

.track-info {
    flex: 1;
}

.track-title {
    margin: 0 0 5px;
}

.track-title a {
    color: #333;
    text-decoration: none;
}

.track-title a:hover {
    color: #0073aa;
}

.track-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #888;
}

.track-stats {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

/* Featured Track */
.featured-track {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.featured-track-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-bio,
.about-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list i {
    color: #0073aa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon.facebook { background: #1877F2; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.instagram { background: #E4405F; }

/* Music Single Specific */
.music-cover {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.default-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
}

.music-info-header {
    flex: 1;
}

.music-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.music-type {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
}

.artist-link a {
    color: white;
    text-decoration: none;
}

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

.music-title {
    font-size: 3rem;
    margin: 0 0 15px;
    color: white;
    font-weight: 800;
}

.music-genre {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.music-stats-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.music-stats-header .stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.music-player-large {
    margin-bottom: 30px;
}

.music-actions-header {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-like {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-like.liked {
    color: #e74c3c;
}

.btn-like:hover {
    background: #f8f9fa;
}

.music-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.music-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.artist-preview {
    display: flex;
    gap: 20px;
    align-items: center;
}

.artist-preview-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.track-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-details li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.track-details li:last-child {
    border-bottom: none;
}

.related-track {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.related-track:last-child {
    border-bottom: none;
}

.related-track-cover {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-track-info {
    flex: 1;
}

.related-track-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
}

.related-track-info h4 a {
    color: #333;
    text-decoration: none;
}

.related-track-info h4 a:hover {
    color: #0073aa;
}

.related-artist {
    margin: 0;
    font-size: 12px;
}

.related-artist a {
    color: #666;
}

.related-artist a:hover {
    color: #0073aa;
}

.play-related {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.copy-link { background: #666; }

/* Archive Styles */
.archive-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}

.archive-sidebar {
    flex-shrink: 0;
}

.filter-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-widget h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.genre-filter,
.popular-artists,
.recently-played,
.sort-filter,
.verified-artists {
    list-style: none;
    padding: 0;
    margin: 0;
}

.genre-filter li,
.popular-artists li,
.recently-played li,
.sort-filter li,
.verified-artists li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genre-filter li:last-child,
.popular-artists li:last-child,
.recently-played li:last-child,
.sort-filter li:last-child,
.verified-artists li:last-child {
    border-bottom: none;
}

.genre-filter li.active a,
.sort-filter li.active a {
    color: #0073aa;
    font-weight: bold;
}

.count {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.verified-artists li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.verified-artists li a:hover {
    color: #0073aa;
}

.verified-artists li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cta-widget {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-widget h3,
.cta-widget p {
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.view-controls {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: none;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.view-btn.active {
    background: #0073aa;
    border-color: #0073aa;
    color: white;
}

.music-results,
.artist-results {
    margin-bottom: 40px;
}

.music-table,
.artists-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.music-table th,
.music-table td,
.artists-table th,
.artists-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.music-table th,
.artists-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.track-info-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-thumb-small {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.default-thumb-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.artist-info-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.artist-avatar-small img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.verified-badge-small {
    background: #1DA1F2;
    color: white;
    padding: 2px 5px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 5px;
}

.status-verified {
    color: #46b450;
    background: #f0f7f1;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.status-unverified {
    color: #666;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.alphabet-filter {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.filter-letters a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    font-weight: 600;
}

.filter-letters a:hover,
.filter-letters a.active {
    background: #0073aa;
    color: white;
}

.results-count {
    color: #666;
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-results i {
    display: block;
    margin-bottom: 20px;
}

.archive-pagination {
    text-align: center;
    padding: 30px 0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background: white;
    color: #666;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background: #0073aa;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artist-header-content,
    .music-header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .music-content,
    .archive-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .featured-track-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .artist-preview {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .artist-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        padding: 10px;
        font-size: 14px;
    }
    
    .artist-music-grid,
    .music-grid .grid,
    .artists-grid .grid {
        grid-template-columns: 1fr;
    }
    
    .artist-track-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .track-number {
        width: auto;
    }
    
    .track-stats {
        margin-right: 0;
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .archive-controls {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .music-table,
    .artists-table {
        display: block;
        overflow-x: auto;
    }
    
    .filter-letters a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .music-title {
        font-size: 2rem;
    }
    
    .music-stats-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .music-actions-header {
        justify-content: center;
    }
    
    .artist-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
}



/* ==============================
   AfroStream Header
============================== */
.afrostream-header {
	background: #0f0f0f;
	padding: 15px 30px;
	border-bottom: 1px solid #222;
}

.afrostream-header-inner {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.afrostream-logo a {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
}

.afrostream-nav .afrostream-menu {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.afrostream-nav a {
	color: #ddd;
	text-decoration: none;
	font-weight: 500;
}

.afrostream-nav a:hover {
	color: #fff;
}

.afrostream-header-cta .btn-upload {
	background: #ff4b2b;
	color: #fff;
	padding: 10px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}

/* ==============================
   Footer
============================== */
.afrostream-footer {
	background: #111;
	color: #aaa;
	padding: 50px 30px 20px;
}

.afrostream-footer-inner {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.afrostream-footer h4 {
	color: #fff;
	margin-bottom: 12px;
}

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

.afrostream-footer ul li {
	margin-bottom: 8px;
}

.afrostream-footer a {
	color: #aaa;
	text-decoration: none;
}

.afrostream-footer a:hover {
	color: #fff;
}

.afrostream-footer-bottom {
	border-top: 1px solid #222;
	margin-top: 30px;
	padding-top: 15px;
	text-align: center;
	font-size: 14px;
}


/* -------------------------------
   Header Dropdown Styles
--------------------------------- */
.afrostream-nav .afrostream-menu {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	position: relative;
}

.afrostream-nav li {
	position: relative;
}

.afrostream-nav a {
	color: #ddd;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 0;
	display: inline-block;
}

.afrostream-nav a:hover {
	color: #fff;
}

/* Dropdown Menu */
.afrostream-nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #0f0f0f;
	padding: 10px 0;
	list-style: none;
	min-width: 180px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	z-index: 999;
}

.afrostream-nav li:hover > ul {
	display: block;
}

.afrostream-nav li ul li {
	width: 100%;
}

.afrostream-nav li ul li a {
	padding: 8px 16px;
	color: #ddd;
	font-weight: 400;
	display: block;
}

.afrostream-nav li ul li a:hover {
	background: #222;
	color: #fff;
}

