/* Studio Page Styles */

/* Studio Entity Header */
.studio-header {
    background: linear-gradient(135deg, #3f51b5 0%, #2196f3 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 15px auto;
    max-width: 95%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.studio-header h2 {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.studio-header .studio-meta {
    font-size: 1em;
    opacity: 0.9;
}

/* Stats Container */
.studio-stats-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 95%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.studio-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.studio-stat-item {
    padding: 5px;
}

.studio-stat-value {
    font-size: 1.6em;
    font-weight: bold;
    color: #303f9f;
}

.studio-stat-label {
    font-size: 0.85em;
    color: #757575;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Genre Distribution Section */
.studio-genres-section {
    margin-top: 20px;
}

.studio-genres-section h4 {
    color: #3f51b5;
    border-bottom: 2px solid #e8eaf6;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.genre-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.genre-row {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.genre-name {
    width: 25%;
    text-align: right;
    padding-right: 15px;
    color: #555;
    font-weight: 500;
}

.progress-bar {
    flex-grow: 1;
    background-color: #f5f5f5;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5c6bc0, #3949ab);
    border-radius: 5px;
}

.genre-count {
    width: 40px;
    padding-left: 10px;
    color: #777;
    font-size: 0.9em;
}

/* Hall of Fame specific overrides if needed (though mostly uses halloffame.css) */
.studio-hof-header {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-bottom-color: #5c6bc0;
}

/* Responsive */
@media (max-width: 600px) {
    .studio-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .genre-name {
        width: 35%;
    }
}