diff --git a/templates/404.html b/templates/404.html
index bb032cd..2ed6ade 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -1,15 +1,71 @@
-{%extends 'base.html' %} {%block content%}
+{% extends 'base.html' %}
+{% block content %}
-
-
{%block title%}404{%endblock%}
-
+
+
{% block title %}404{% endblock %}
+
Error! Page not found. Go back to
- Home
+ Home
-
Github. Developed By
- AverageBlank and AalokeCode
+
+
+ Github. Developed By
+ AverageBlank and
+ AalokeCode
-{%endblock%}
\ No newline at end of file
+
+{% endblock %}
+
+{% block script %}
+
+{% endblock %}
diff --git a/templates/base.html b/templates/base.html
index 5f3394e..f2acf3e 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,7 +5,7 @@
-
{%block title %} {% endblock %} - trim.lol
+
{% block title %} {% endblock %} - trim.lol
@@ -20,16 +20,61 @@
.errorTrue {
display: block !important;
}
+
+ /* Futuristic Background Animation */
+ .futuristic-bg {
+ background: radial-gradient(circle at center, #1c1c3c, #2f2f55);
+ box-shadow: 0px 0px 15px rgba(0, 150, 255, 0.4), inset 0px 0px 10px rgba(0, 150, 255, 0.2);
+ animation: bg-pulse 8s infinite alternate;
+ }
+
+ @keyframes bg-pulse {
+ from {
+ background: radial-gradient(circle at center, #1c1c3c, #2f2f55);
+ }
+ to {
+ background: radial-gradient(circle at center, #1a1a36, #2b2b50);
+ }
+ }
+
+ /* Glowing Logo Effect */
+ .futuristic-logo {
+ filter: drop-shadow(0px 0px 8px rgba(0, 150, 255, 0.6));
+ transition: filter 0.3s ease-in-out;
+ }
+
+ .futuristic-logo:hover {
+ filter: drop-shadow(0px 0px 12px rgba(0, 150, 255, 0.8));
+ }
+
+ /* Title Glow Effect */
+ .futuristic-title {
+ color: #e5e7eb;
+ text-shadow: 0 0 8px rgba(0, 150, 255, 0.6), 0 0 12px rgba(0, 150, 255, 0.4);
+ animation: glow 1.5s ease-in-out infinite alternate;
+ }
+
+ @keyframes glow {
+ from {
+ text-shadow: 0 0 5px rgba(0, 150, 255, 0.5), 0 0 10px rgba(0, 150, 255, 0.3);
+ }
+ to {
+ text-shadow: 0 0 12px rgba(0, 150, 255, 0.8), 0 0 15px rgba(0, 150, 255, 0.5);
+ }
+ }
-
+
-

+
+
+
+
{% block title %}
{% block content %} {% endblock %}
{% block script %} {% endblock %}
-
\ No newline at end of file
+