/* Profile Page Styles */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.profile-info h1 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.profile-info p {
    margin: 0;
    color: var(--text-secondary);
}

.live-indicator {
    background: var(--danger-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}

.profile-platforms-bar {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
}

.profile-stat-number {
    font-size: 2em;
    color: var(--primary-color);
    font-weight: bold;
}

.profile-stat-label {
    color: var(--text-secondary);
}

.platform-connection {
    margin: 10px 0;
}

.platform-connection a {
    color: var(--primary-color);
    text-decoration: none;
}

.platform-connection strong {
    font-weight: bold;
}

.profile-back-link {
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

.profile-back-link a {
    color: var(--primary-color);
}

.profile-no-content {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
}

/* DJ Profile Styles */
.dj-profile-description {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(var(--primary-color-rgb, 37, 99, 235), 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.genre-breakdown h4 {
    margin: 0 0 10px 0;
    color: var(--text-secondary);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.genre-item {
    margin-bottom: 8px;
}

.genre-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.genre-name {
    font-weight: 500;
    color: var(--text-primary);
}

.genre-percentage {
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 500;
}

.genre-bar {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.genre-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), rgba(var(--primary-color-rgb, 37, 99, 235), 0.7));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.analysis-info {
    margin-top: 12px;
    font-size: 0.8em;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

/* Genre Grouping Styles */
.genre-group {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.parent-genre {
    margin-bottom: 8px;
}

.parent-genre-name {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 1em;
}

.subgenre-count {
    color: var(--text-secondary);
    font-size: 0.8em;
    font-style: italic;
}

.subgenres {
    margin-left: 15px;
    margin-top: 8px;
    border-left: 2px solid var(--border-color);
    padding-left: 10px;
}

.subgenre-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.9em;
}

.subgenre-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.subgenre-percentage {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.85em;
}

.subgenre-more {
    color: var(--text-secondary);
    font-size: 0.8em;
    font-style: italic;
    margin-top: 4px;
}

.recent-activity {
    margin-top: 40px;
}