diff --git a/assets/static/css/style.css b/assets/static/css/style.css
index 72cd0bc..1df822c 100644
--- a/assets/static/css/style.css
+++ b/assets/static/css/style.css
@@ -857,4 +857,60 @@ body {
.squawk-standard:hover {
background: #218838;
+}
+
+/* 3D Radar Styles */
+#radar3d-view {
+ position: relative;
+}
+
+#radar3d-container {
+ flex: 1;
+ min-height: 500px;
+ width: 100%;
+ background: #0a0a0a;
+ position: relative;
+}
+
+.radar3d-controls {
+ display: flex;
+ gap: 1rem;
+ padding: 1rem;
+ background: #2d2d2d;
+ border-bottom: 1px solid #404040;
+ align-items: center;
+}
+
+.radar3d-controls button {
+ padding: 0.5rem 1rem;
+ background: #404040;
+ color: white;
+ border: 1px solid #666;
+ border-radius: 4px;
+ cursor: pointer;
+}
+
+.radar3d-controls button:hover:not(:disabled) {
+ background: #505050;
+}
+
+.radar3d-controls button:disabled {
+ opacity: 0.5;
+ cursor: not-allowed;
+}
+
+.radar3d-controls button.active {
+ background: #00a8ff;
+ border-color: #0088cc;
+}
+
+.radar3d-controls label {
+ display: flex;
+ gap: 0.5rem;
+ align-items: center;
+ color: #ccc;
+}
+
+.radar3d-controls input[type="range"] {
+ width: 150px;
}
\ No newline at end of file
diff --git a/assets/static/index.html b/assets/static/index.html
index eb6ebee..e200e09 100644
--- a/assets/static/index.html
+++ b/assets/static/index.html
@@ -411,7 +411,6 @@
-
🚧 3D Controls Under Construction