/* Style par défaut du lien */
.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Effet au survol ET quand l'onglet est ACTIF */
.nav-link:hover, 
.nav-link.active {
    color: var(--accent); /* Vert néon */
    background-color: rgba(0, 255, 136, 0.1); /* Fond léger */
    border-color: var(--accent); /* Bordure verte */
    transform: translateY(-2px); /* Légère élévation */
}

/* Optionnel : On peut rendre l'onglet actif un peu plus brillant */
.nav-link.active {
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    font-weight: bold;
}
:root {
    --bg-color: #0f1115;
    --card-bg: #1a1d23;
    --accent: #00ff88;
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
}

.container { max-width: 1100px; margin: auto; }

/* Styles Communs */
header { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid #333; }
.btn { background: var(--accent); color: #000; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; }
.card { background: var(--card-bg); padding: 20px; border-radius: 12px; margin-bottom: 20px; }

/* Table/List Styles */
.beat-row { display: grid; grid-template-columns: 50px 2fr 1fr 1fr 120px; align-items: center; padding: 15px; border-bottom: 1px solid #222; }
.beat-row:hover { background: #22252c; }

/* License Table */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.license-card { border: 1px solid #333; text-align: center; }
.license-card.featured { border-color: var(--accent); transform: scale(1.05); }