diff --git a/website/index.php b/website/index.php
index 4d310028..6544a50e 100644
--- a/website/index.php
+++ b/website/index.php
@@ -321,6 +321,13 @@ if (isset($_SESSION['steamid'])) {
+
+
+
diff --git a/website/style.css b/website/style.css
index 0c31eed6..a784a63e 100644
--- a/website/style.css
+++ b/website/style.css
@@ -370,6 +370,38 @@ body {
line-height: 1.3;
}
+/* Footer */
+.app-footer {
+ background: var(--bg-secondary);
+ border-top: 1px solid var(--border-color);
+ padding: 1rem 0;
+ text-align: center;
+ margin-top: 2rem;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+}
+
+.footer-content p {
+ margin: 0;
+ color: var(--text-muted);
+ font-size: 0.9rem;
+}
+
+.footer-content a {
+ color: var(--accent-blue);
+ text-decoration: none;
+ transition: var(--transition);
+}
+
+.footer-content a:hover {
+ color: var(--accent-blue-hover);
+ text-decoration: underline;
+}
+
/* Overlays and Modals */
.overlay,
.modal {