/*=================================================================
   0️⃣  RESET & BASE
=================================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #fff;
  min-height: 100%;
  overflow-x: hidden;
}

/*=================================================================
   1️⃣  HEADER – FUTURISTE
=================================================================*/
.cyber-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}
.logo span {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-start {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}
.menu-wrapper {
  position: relative;
}
.menu-toggle {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}
.menu-toggle:hover {
  color: #a5b4fc;
}
.dropdown-menu {
  position: absolute;
  top: 130%;
  right: 0;
  background: rgba(17, 17, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: 0.6rem 0;
  display: none;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}
.dropdown-menu li {
  padding: 0;
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.25s ease;
}
.dropdown-menu li a:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #fff;
}
.menu-wrapper.active .dropdown-menu {
  display: block;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*=================================================================
   2️⃣  MAIN CONTENT
=================================================================*/
main {
  width: 100%;
  padding: 120px 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero {
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite;
}
.hero p {
  font-size: 1.3rem;
  color: #c7d2fe;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/*=================================================================
   3️⃣  BUTTONS
=================================================================*/
.btn {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

/*=================================================================
   4️⃣  FEATURES, PRICING & FOOTER (unchanged)
=================================================================*/
/* … (le reste du fichier que vous avez fourni) … */

/*=================================================================
   5️⃣  DASHBOARD SPECIFICS (stats, tables, etc.)
=================================================================*/
.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
}
.dashboard-header {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.dashboard-header h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.user-badge {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.5);
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.stat-label {
  color: #c7d2fe;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/*=================================================================
   6️⃣  TABLES
=================================================================*/
.table-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.table-header h2 {
  font-size: 1.5rem;
  color: #a5b4fc;
}
.search-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  width: 300px;
  max-width: 100%;
  transition: all 0.3s ease;
}
.search-box:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.data-table thead {
  background: rgba(99, 102, 241, 0.1);
  border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}
.data-table th {
  padding: 1rem;
  text-align: left;
  color: #a5b4fc;
  font-weight: 600;
  font-size: 0.95rem;
}
.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.data-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}
.data-table td {
  padding: 1rem;
  color: #c7d2fe;
}
.action-buttons {
  display: flex;
  gap: 0.5rem;
}
.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/*=================================================================
   7️⃣  TABS (DAW / AI / Projects) – nouveaux styles
=================================================================*/
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}
.tab {
  background: transparent;
  border: none;
  color: #c7d2fe;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}
.tab:hover { color: #a5b4fc; }
.tab.active {
  color: #fff;
  border-bottom-color: #6366f1;
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s ease; }

/*=================================================================
   8️⃣  DAW – UI SPECIFIC (waveform, visualiser, progress)
=================================================================*/
.upload-zone {
  cursor: pointer;
  border: 2px dashed rgba(99, 102, 241, 0.5);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  background: rgba(99, 102, 241, 0.04);
  transition: all .2s ease;
}
.upload-zone:hover {
  border-color: rgba(99, 102, 241, 0.8);
  background: rgba(99, 102, 241, 0.08);
}
.upload-zone.dragging {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.15);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}
.waveform {
  position: relative;
  background: linear-gradient(90deg, rgba(99,102,241,.1), rgba(139,92,246,.1));
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
}
.visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 60px;
  gap: 2px;
  margin-top: 1rem;
}
.visualizer-bar {
  flex: 1;
  background: linear-gradient(180deg,#8b5cf6 0%,#6366f1 100%);
  border-radius: 2px;
  min-height: 5px;
  transition: height .1s ease;
}
.progress-bar { display:none; margin-top:1.5rem; }
.progress-bar.active { display:block; }
.progress-fill {
  width:0%; height:8px;
  background:linear-gradient(90deg,#6366f1 0%,#8b5cf6 100%);
  border-radius:4px;
  box-shadow:0 0 10px rgba(99,102,241,.6);
  transition:width .3s ease;
}

/*=================================================================
   9️⃣  LOADING SPINNER
=================================================================*/
.loading {
  display:inline-block;
  width:20px;
  height:20px;
  border:3px solid rgba(255,255,255,.3);
  border-radius:50%;
  border-top-color:#fff;
  animation:spin .8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/*=================================================================
   10️⃣  MODAL (confirm delete, edit user, …)
=================================================================*/
.modal-overlay {
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(5px);
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
}
.modal-overlay.active { display:flex; animation:fadeIn .3s ease; }

.modal {
  background:rgba(17,17,20,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  max-width:500px;
  width:90%;
  max-height:80vh;
  overflow-y:auto;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
}
.modal-header {
  padding:1.5rem;
  border-bottom:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.modal-title { font-size:1.3rem; font-weight:600; }
.modal-close {
  background:transparent;
  border:none;
  color:rgba(255,255,255,.6);
  font-size:1.5rem;
  cursor:pointer;
  width:32px; height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  transition:all .2s ease;
}
.modal-close:hover {
  background:rgba(255,255,255,.1);
  color:#fff;
}
.modal-body { padding:1.5rem; }
.modal-footer {
  padding:1.5rem;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  gap:1rem;
  justify-content:flex-end;
}

/*=================================================================
   11️⃣  BADGES DE PLAN (basic / premium / pro)
=================================================================*/
.badge.basic   {background:rgba(99,102,241,.2);   color:#c7d2fe; border:1px solid rgba(99,102,241,.3);}
.badge.premium{background:rgba(16,185,129,.2); color:#a7f3d0; border:1px solid rgba(16,185,129,.3);}
.badge.pro    {background:rgba(139,92,246,.2);  color:#c4b5fd; border:1px solid rgba(139,92,246,.3);}

/*=================================================================
   12️⃣  NOTIFICATIONS (simple toast)
=================================================================*/
.notification {
  position:fixed;
  top:120px;
  right:20px;
  padding:1rem 1.5rem;
  border-radius:12px;
  background:rgba(59,130,246,.9);
  color:#fff;
  font-weight:600;
  z-index:10000;
  animation:slideIn .3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.notification.success {background:rgba(34,197,94,.9);}
.notification.error   {background:rgba(239,68,68,.9);}
.notification.warning{background:rgba(251,146,60,.9);}
@keyframes slideIn {
  from{transform:translateX(400px);opacity:0;}
  to  {transform:translateX(0);opacity:1;}
}

/*=================================================================
   13️⃣  RESPONSIVE ADJUSTMENTS
=================================================================*/
@media (max-width: 768px) {
  .hero h1 {font-size:2rem;}
  .dashboard-header {flex-direction:column;text-align:center;}
  .dashboard-header h1 {font-size:1.5rem;}
  .search-box {width:100%;}
  .data-table {font-size:0.85rem;}
  .data-table th,
  .data-table td {padding:0.7rem 0.5rem;}
  .tabs {gap:0.2rem;}
  .tab {padding:0.5rem 1rem;font-size:0.9rem;}
  .features-grid {grid-template-columns:repeat(auto-fit,minmax(150px,1fr));}
  .daw-container {padding:1rem;}
}

/*=================================================================
   14️⃣  ANIMATIONS ADDITIONNELLES
=================================================================*/
@keyframes glow {
  0%,100% {text-shadow:0 0 20px rgba(99,102,241,.5);}
  50%      {text-shadow:0 0 40px rgba(139,92,246,.8);}
}

/*=================================================================
   END OF FILE
=================================================================*/
