diff --git a/public/index.html b/public/index.html
index db9f1d7..30e5d0e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -221,14 +221,14 @@
placeholder="Введите email для уведомлений">
Email для уведомлений
-
-
+
diff --git a/public/style.css b/public/style.css
index d0ab722..c94bc0d 100644
--- a/public/style.css
+++ b/public/style.css
@@ -4111,4 +4111,27 @@ button.btn-primary {
.detailed-stats h3 {
margin-bottom: 15px;
- }
\ No newline at end of file
+ }
+ /* Скрытые элементы */
+.hidden {
+ display: none !important;
+}
+
+/* Или более мягкий вариант - скрыть, но сохранить место */
+.visually-hidden {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+
+/* Если нужно сделать плавное появление позже */
+.hidden-conditional {
+ opacity: 0.3;
+ pointer-events: none;
+ user-select: none;
+}
\ No newline at end of file