/*
 * Feuille de style pour Phantom Beats Studio
 * On reprend le look néon sombre de la version prototype et on l'organise
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1f 100%);
    color: #ffffff;
    min-height: 100vh;
}

.header {
    background: rgba(20, 10, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-bottom: 2px solid #8b4d8b;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.card {
    background: rgba(30, 20, 40, 0.6);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(139, 77, 139, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 77, 139, 0.3);
}

.card-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff6b9d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-big {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.stat-label {
    font-size: 14px;
    color: #888;
}

.beats-list {
    margin-top: 40px;
}

.beat-item {
    background: rgba(30, 20, 40, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 77, 139, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beat-info h3 {
    margin-bottom: 8px;
}

.beat-meta {
    color: #888;
    font-size: 14px;
}

.beat-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b9d;
}

.stat-name {
    font-size: 12px;
    color: #888;
}

.btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(139, 77, 139, 0.3);
    border: 1px solid #8b4d8b;
}

.upload-zone {
    background: rgba(30, 20, 40, 0.6);
    border: 2px dashed #8b4d8b;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 20px 0;
}

.upload-zone:hover {
    background: rgba(139, 77, 139, 0.1);
}

.quick-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.section-title {
    font-size: 28px;
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background: rgba(255, 107, 157, 0.2);
    color: #ff6b9d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}