diff --git a/popup/popup.css b/popup/popup.css
index 8a2de53..c6b84bb 100644
--- a/popup/popup.css
+++ b/popup/popup.css
@@ -612,4 +612,40 @@ body::-webkit-scrollbar-corner,
.exception-remove:hover {
background: #d00030;
+}
+
+/* Footer Styles */
+.footer {
+ margin-top: 16px;
+ padding: 12px 16px;
+ border-top: 1px solid var(--input-border);
+ background: var(--section-bg);
+}
+
+.footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ font-size: 0.8em;
+ color: var(--text-color);
+ opacity: 0.7;
+}
+
+.version {
+ font-weight: 500;
+}
+
+.github-link {
+ display: flex;
+ align-items: center;
+ gap: 4px;
+ color: var(--text-color);
+ text-decoration: none;
+ opacity: 0.7;
+ transition: opacity 0.2s ease, color 0.2s ease;
+}
+
+.github-link:hover {
+ opacity: 1;
+ color: var(--accent);
}
\ No newline at end of file
diff --git a/popup/popup.html b/popup/popup.html
index 6950a99..390a9ba 100644
--- a/popup/popup.html
+++ b/popup/popup.html
@@ -149,6 +149,16 @@
+
+