diff --git a/frontend/app/main.py b/frontend/app/main.py
index 8112d8c..43cba34 100644
--- a/frontend/app/main.py
+++ b/frontend/app/main.py
@@ -516,13 +516,6 @@ def admin_models():
return render_template("admin/models.html")
-@app.get("/admin/videos")
-@admin_required
-def admin_videos():
- """Show all video generation jobs across all users."""
- return render_template("admin/videos.html")
-
-
# ── Admin API proxies (same-origin for browser JS, avoids mixed-content) ──
@app.get("/api/admin/videos")
diff --git a/frontend/app/static/style.css b/frontend/app/static/style.css
index 8e212a9..81b2d8a 100644
--- a/frontend/app/static/style.css
+++ b/frontend/app/static/style.css
@@ -615,7 +615,7 @@ main {
/* Card */
.card {
- background: #fff;
+ background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
padding: 2rem;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
diff --git a/frontend/app/templates/base.html b/frontend/app/templates/base.html
index b9723cc..bea6c51 100644
--- a/frontend/app/templates/base.html
+++ b/frontend/app/templates/base.html
@@ -30,7 +30,6 @@
Profile
{% if session.get('user_role') == 'admin' %}
Admin
- Video Jobs
{% endif %}
Log out
{% else %}