diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index c5e95d2..3f77a31 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -424,127 +424,141 @@ export default function App() {
};
const HogwartsPointsCard = ({ value = 0 }) => {
- return (
+ const GOLD = "#f2d27a"; // echtes Gold, unabhängig vom Theme
+ const GOLD2 = "#caa24a"; // dunkleres Gold für Rand
+
+ return (
+
+ {/* Header */}
+
+ Hogwarts Points
+
+
+ {/* Medallion / parchment inset */}
- {/* Pergament-Hintergrund */}
+ {/* paper speckles */}
- {/* Papier-Textur / Flecken */}
+ {/* gold frame line */}
- {/* goldene Linie */}
+ {/* value */}
-
-
-
- Hogwarts Points
+ >
+
+ {value}
-
- {value}
-
-
-
- HP
-
-
-
-
-
- + / −
-
-
- Hauswertung
-
+ HP
+
+ {/* small stamp */}
+
+ Score
+
- );
- };
+
+ );
+};
+
return (