diff --git a/backend/server.js b/backend/server.js
index 9997c5e..1546257 100644
--- a/backend/server.js
+++ b/backend/server.js
@@ -8,10 +8,10 @@ const PORT = process.env.PORT || 3000;
app.use(cors());
app.use(express.json());
-// Service du moteur de calcul situé à la racine
+// Serve the calculation engine located at the root
app.use('/pkCore.js', express.static(path.join(__dirname, '../pkCore.js')));
-// Service des fichiers statiques frontend
+// Serve frontend static files
app.use(express.static(path.join(__dirname, '../frontend')));
app.listen(PORT, () => {
diff --git a/frontend/css/styles.css b/frontend/css/styles.css
index ddccb56..9507c4c 100644
--- a/frontend/css/styles.css
+++ b/frontend/css/styles.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/* ============================================================
- Thèmes (dark / light / monokai) — variables CSS consommées
- par des classes Tailwind arbitraires : bg-[var(--kt-bg)] etc.
+ Themes (dark / light / monokai) — CSS variables consumed
+ by arbitrary Tailwind classes: bg-[var(--kt-bg)] etc.
============================================================ */
:root,
html[data-theme="dark"] {
diff --git a/frontend/index.html b/frontend/index.html
index efbad0c..c30063b 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -6,13 +6,13 @@
KétaPK - Simulation Pharmacocinétique
-
+
-
+
-
+
@@ -95,18 +95,18 @@