.a_info {
    color: #00d4ff;
   }
   .a_info2 {
    color: #00d4ff;
   }
   
   button:hover {
    background: linear-gradient(45deg, #00eaff, #005f8f);
    box-shadow: 0 0 25px #00eaff, 0 0 35px #00bfff;
    transform: scale(1.05);
   }
   
   /* Анимация звезд */
   body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("./images/stardust.png");
    z-index: -1;
    opacity: 0.3;
   }
   
   /* Добавляем плавность взаимодействия */
   input,
   select {
    transition: all 0.3s ease-in-out;
   }
   
   input:focus,
   select:focus {
    outline: none;
    border-color: #00eaff;
    box-shadow: 0 0 10px #00eaff, 0 0 15px #005f8f;
   }
   
   table {
    border-collapse: collapse;
    position: relative;
    box-shadow: 0 0 15px #45a29e;
    margin: 0 auto;
    /* Центрирование таблицы */
   }
   
   td {
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #1f2833;
    font-size: 18px;
    font-weight: bold;
    color: #c5c6c7;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
   }
   
   .highlight {
    background-color: #66d9e8;
    color: #0b0c10;
   }
   
   .open-modal-btn {
    background-color: #45a29e;
    color: #0b0c10;
    border: none;
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
   }
   
   .open-modal-btn:hover {
    background-color: #66fcf1;
   }
   
   .card-list {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    color: #c5c6c7;
    max-height: 400px;
    overflow-y: auto;
   }
   
   .card-list li {
    margin: 5px 0;
   }
   
   #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    /* Не блокирует клики */
   }
   
   #star {
    position: relative;
    color: #45a29e;
   }
   
   @keyframes flyAround {
    0% {
     transform: translate(-50%, -50%);
    }
   
    25% {
     transform: translate(50vw, -40vh);
    }
   
    50% {
     transform: translate(-30vw, 30vh);
    }
   
    75% {
     transform: translate(40vw, 40vh);
    }
   
    100% {
     transform: translate(-50%, -50%);
    }
   }
   
   .animate {
    animation: flyAround 4s linear forwards;
    opacity: 1;
   }
   
   #buttonClose {
    background: linear-gradient(45deg, gray, #007bbf);
    width: 100%;
    display: none;
   }
   #buttonAndroid {
    background: linear-gradient(45deg, gray, #007bbf);
    width: 100%;
    display: none;
   }
   
   body {
    font-family: "Courier New", Courier, monospace;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
    overflow-y: auto;
    padding: 20px;
    background-image: radial-gradient(circle, #1a0025, #001540 60%, #000428),  url(./images/background.jpg);
    background-blend-mode: overlay, color;
       background-repeat: no-repeat;
       background-position: center;
       background-size: cover;
    
   }
   
   h1 {
    font-size: 3rem;
    color: #66d9e8;
    text-shadow: 0 0 10px #66d9e8, 0 0 20px #007f00, 0 0 30px #66d9e8;
    text-align: center;
   }
   
   .container {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px #66d9e8, 0 0 40px #00eaff;
   }
   
   label {
    display: block;
    font-size: 1.2rem;
    color: #00d4ff;
    margin: 15px 0 5px;
    text-align:center;
    font-weight: bold; /* Делаем текст жирным */
   }
   .inline-form {
    display: flex;
    align-items: center; /* Вертикальное выравнивание */
    gap: 10px; /* Отступ между элементами */
   }
   select,
   input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid #00eaff;
    background: #002b36;
    color:  #00d4ff;
    box-shadow: 0 0 10px #00eaff;
   
    background-color: #1e3b5a;
   
    box-sizing: border-box;
   }
   #uklad{
       display:none;
   }
   .alert_input {
    border: 2px solid #ff0000; /* Красная граница при ошибке */
    background-color: #3e1c1c; /* Темный фон с красным оттенком */
    color: #ff0000; /* Красный цвет текста */
    box-shadow: 0 0 15px #ff0000, 0 0 25px #ff4d4d; /* Красное свечение */
   }
   
   input::placeholder{
    color:  #00d4ff;
   }
   
   select:hover,
   input:hover {
    border-color: #66d9e8;
    box-shadow: 0 0 20px #66d9e8;
   }
   
   button {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #66d9e8, #00eaff);
    color: #ffffff;
    box-shadow: 0 0 20px #66d9e8, 0 0 40px #00eaff;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
   }
   
   button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #66d9e8, 0 0 50px #00eaff;
   }
   #result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8); /* Полупрозрачный фон */
    border-radius: 10px;
    box-shadow: 0 0 15px #66d9e8, 0 0 30px #00eaff; /* Яркое свечение */
    color: #ffffff; /* Белый текст */
    font-size: 1.1rem; /* Увеличиваем размер шрифта */
    font-weight: bold; /* Делаем текст жирным */
    text-shadow: 0 0 5px #66d9e8, 0 0 15px #00eaff; /* Неоновое свечение текста */
    letter-spacing: 1px; /* Увеличиваем межбуквенный интервал для лучшего восприятия */
    transition: all 0.3s ease-in-out; /* Плавный переход для всех свойств */
    font-size: 1.2rem;
    color: #66d9e8;
    margin: 15px 0 5px;
    font-weight: bold; /* Делаем текст жирным */
    text-align:center;
   }
   
   
   select:disabled {
       background-color: #e0e0e0; /* Светло-серый фон */
       color: #6c757d; /* Серый цвет текста */
       border: 1px solid #ccc; /* Светло-серая рамка */
       cursor: not-allowed; /* Указатель мыши в виде запрещающего знака */
   }
   
   #selectForm{
       display: none;
   }
   
   #button{
       display: none;
   }
   
   /* Эффект при наведении на #result */
   #result:hover {
    background: rgba(0, 0, 0, 0.9); /* Темнее фон при наведении */
    box-shadow: 0 0 20px #66d9e8, 0 0 40px #00eaff; /* Более яркое свечение */
    text-shadow: 0 0 10px #66d9e8, 0 0 20px #00eaff; /* Увеличиваем свечение текста */
   }
   
   a {
    color: #00eaff;
    text-decoration: none;
   }
   
   a:hover {
    text-shadow: 0 0 10px #00eaff;
   }
   
   
   .card-link {
       display: inline-block;
       padding: 10px;
       margin: 0px;
       border: 1px solid #000;
       border-radius: 8px;
       background-color: #fff;
       text-decoration: none;
       color: #000;
       font-weight: bold;
       text-align: center;
       width: 21px;
       height: 10px;
       line-height: 10px;
       box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
       cursor: pointer;
   }
   .card-link:hover {
       background-color: #f0f0f0;
   }
   
   .card-link2 {
       width: 31px;
   }
   
   .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
   }
   
   .modal-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px #66d9e8, 0 0 40px #00eaff;
   }
   
   .close {
    font-size: 2rem;
    color: #00eaff;
    float: right;
    cursor: pointer;
   }
   
   .close:hover {
    color: #66d9e8;
   }
   
   .modal-header {
    font-size: 1.5rem;
    text-align: center;
    color: #66d9e8;
    margin-bottom: 20px;
   }
   
   .sparkling-label {
    color: #66d9e8; /* мягкий голубой */
    text-shadow:
        0 0 6px #66d9e8,
        0 0 12px #4a9cae,
        0 0 18px #66d9e8,
        0 0 24px #2f5766;
    animation: futu-glow-soft 3s infinite ease-in-out;
    position: relative;
    font-weight: 900;
}

.sparkling-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle, rgba(102, 217, 232, 0.15) 50%, transparent 80%);
    box-shadow: 
        0 -15px 10px -2px #66d9e8,
        15px 15px 10px -2px #4a9cae,
        -15px 15px 10px -2px #66d9e8,
        15px -15px 10px -2px #4a9cae,
        -15px -15px 10px -2px #66d9e8;
    animation: futu-rays-soft 5s linear infinite;
    pointer-events: none;
}

/* Плавное мерцание с мягкими переходами и вибрацией */
@keyframes futu-glow-soft {
    0%, 100% {
        text-shadow:
            0 0 6px #66d9e8,
            0 0 12px #4a9cae,
            0 0 18px #66d9e8,
            0 0 24px #2f5766;
        color: #60cde3;
        transform: translateX(0);
    }
    50% {
        text-shadow:
            0 0 9px #5bc4db,
            0 0 18px #3f7993,
            0 0 27px #5bc4db,
            0 0 36px #1f3b4d;
        color: #72d9f0;
        transform: translateX(1.5px);
    }
}

/* Плавное вращение и масштабирование лучей с мягким свечением */
@keyframes futu-rays-soft {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
        opacity: 0.65;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}


   
   
             /* Стили для всплывающего окна */
             .popup-overlayMantra {
               position: fixed;
               top: 0;
               left: 0;
               width: 100%;
               height: 100%;
               background-color: rgba(0, 0, 0, 0.8);
               display: none;
               justify-content: center;
               align-items: center;
               z-index: 1000;
           }
   
           .h3_text {
               color:#e4ebea;
           }
   
           .popup-contentMantra {
               width: 100%;
               max-width: 900px;
               display: flex;
               flex-direction: column;
               align-items: center;
               text-align: center;
               color: #66d9e8;
               font-family: 'Comic Sans MS', cursive, sans-serif;
               position: relative;
               max-height: 100%; /* Ограничение по высоте */
               overflow: auto; /* Прокрутка при переполнении */
           }
   
           .image-backgroundMantra {
               position: relative;
               width: 100%;
               display: flex;
               justify-content: center;
               align-items: center;
           }
   
           .image-backgroundMonth {
           filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.7)) drop-shadow(0 0 40px rgba(0, 255, 0, 0.5));
           }
   
           .image-backgroundMonth img {
               width: 100%;
               clip-path: inset(5px 5px 5px 5px round 30px);
           }
   
           .image-backgroundMantra img {
               width: 35%;
               border: 3px solid #66d9e8;
               box-shadow: 0 0 20px #66d9e8;
               border-radius: 25px;
           }
   
           .image-backgroundMantra img:first-child {
               left: 0;
           }
   
           .image-backgroundMantra img:last-child {
               right: 0;
           }
   
           .text-overlayMantra {
               position: relative;
               z-index: 1;
               padding: 20px;
               max-height: 60%; /* Ограничение по высоте для текста */
               overflow-y: auto; /* Вертикальная прокрутка */
           }
   
           .text-overlayMantra p {
               font-size: 2em;
               text-shadow: 2px 2px #000;
           }
   
           .close-btnMantra {
               padding: 15px 30px;
               background-color: #8e44ad;
               color: white;
               border: none;
               border-radius: 10px;
               cursor: pointer;
               font-size: 1.5em;
               box-shadow: 0 0 10px #8e44ad;
               width: auto;
               margin-top: 20px;
               width: 100%;
           }
   
           .close-btnMantra:hover {
               background-color: #732d91;
           }
           
           
   
   .none{
       display: none;
   }
   .card-link3 {
    background-color: gray;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
    width: 12px;
}
::-webkit-scrollbar:horizontal {
    height: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(117, 131, 196, 0.5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}


        /* Стили для затемнения фона */
        .overlayPlanet {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            font-family: 'Star Jedi', Arial, sans-serif; /* Шрифт в стиле "Звездных войн" */
        }

        /* Стили для pop-up окна */
        .popupPlanet {
            background-color: #1c1c1c;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            width: 320px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            border: 2px solid #ffe81f; /* Желтая граница в стиле "Звездных войн" */
        }

        /* Кнопка закрытия */
        .close-btnPlanet {
            cursor: pointer;
            color: #ffe81f; /* Желтый цвет текста в стиле "Звездных войн" */
            font-weight: bold;
            float: right;
            font-size: 18px;
        }


        #buttonPlanet {
            background: linear-gradient(45deg, #000000, #1c1c1c, #000000); /* Градиентный фон в стиле "Звездных войн" */
            color: #ffe81f; /* Желтый цвет текста в стиле "Звездных войн" */
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #buttonPlanet:hover {
            background-color: #444;
        }

        /* Стили для изображения планеты */
        .planet-image {
            width: 100px;
            height: 100px;
            margin-top: 20px;
        }

        /* Анимация */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .animatedPlanet {
            animation: pulse 2s infinite;
        }
           
   /* Медиазапрос для мобильных устройств */
   @media only screen and (max-width: 768px) {
       .container {
        text-align: center;
        max-width: 100%;
        background: none;
        border-radius: 0px;
        box-shadow: none;
      
        /* Центрируем с помощью отступов */
       }
      
       h1 {
        margin-top: -20px;
       }
       .a_info2 {
        display: block; /* Ссылка будет на новой строке */
        margin-top: 10px; /* Добавляем немного отступа сверху, если нужно */
        margin-bottom: -20px;
       }
      
       /* Убираем вертикальную черту (|) на мобильных устройствах */
       .separator {
        display: none; /* Скрываем разделитель */
       }
          
       .image-backgroundMantra img {
           width: 45%;
       }
      }
	  
	  
  .month-title {
    cursor: pointer;
    border-bottom: 1px dashed #26c6da;
    color: #26c6da;
    font-size: 1.05em;
    transition: color 0.3s;
  }

  .month-title:hover {
    color: #00e5ff;
  }

  .month-text {
    display: none;
    margin-top: 0.5em;
    padding: 1em 2em;
    background-color: #10141a;
    color: #b2ebf2;
    border: 2px solid #26c6da;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1em;
  }

  .visible {
    display: block;
  }
  
  hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #26c6da, #00e5ff);
  box-shadow: 0 0 8px 2px #00e5ff;
  margin: 2em 0;
  border-radius: 4px;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px #00b8d4);
  transition: background 0.3s ease-in-out;
}
hr:hover {
  background: linear-gradient(90deg, #00fff7, #00bcd4, #00fff7);
  box-shadow: 0 0 12px 4px #00fff7;
}

.a_info, .a_info2 {
  color: #00f0ff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 8px #00f0ff, 0 0 20px #00b8ff;
}

button {
  background: linear-gradient(135deg, #00eaff, #0077ff);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  box-shadow: 0 0 15px #00eaff, 0 0 30px #005f8f;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1.2px;
}

button:hover {
  background: linear-gradient(45deg, #00f0ff, #004f8f);
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #00aaff;
  transform: scale(1.1);
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/stardust.png") repeat;
  opacity: 0.25;
  z-index: -1;
  animation: starTwinkle 15s linear infinite;
}

@keyframes starTwinkle {
  0%, 100% {opacity: 0.3;}
  50% {opacity: 0.1;}
}

input, select {
  font-family: 'Orbitron', monospace;
  background-color: #002e4f;
  border: 2px solid #00bfff;
  border-radius: 12px;
  padding: 12px;
  color: #00f0ff;
  box-shadow: 0 0 12px #00bfff;
  transition: all 0.3s ease-in-out;
}

input:focus, select:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #0077cc;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0 0 25px #00aaff;
  background: #001933;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Orbitron', monospace;
}

td {
  width: 65px;
  height: 65px;
  border: 1px solid #004080;
  color: #00f0ff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
}

td:hover {
  background: linear-gradient(135deg, #00f0ff, #005f9f);
  color: #001f3f;
  box-shadow: 0 0 15px #00ffff;
}

.highlight {
  background-color: #00ff99;
  color: #001f00;
  box-shadow: 0 0 20px #00ff99;
}

.open-modal-btn {
  background: linear-gradient(135deg, #00cfff, #007799);
  border-radius: 14px;
  padding: 14px 30px;
  color: #0b0c10;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 18px #00cfff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.open-modal-btn:hover {
  background: linear-gradient(135deg, #00ffff, #004466);
  box-shadow: 0 0 30px #00ffff;
  color: #001122;
}

.card-list {
  max-height: 420px;
  overflow-y: auto;
  color: #00f0ff;
  font-family: 'Orbitron', monospace;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.card-list li {
  margin: 6px 0;
  padding: 8px;
  border-radius: 10px;
  background: linear-gradient(90deg, #003366 0%, #001a33 100%);
  box-shadow: 0 0 10px #00cfff inset;
  cursor: default;
  user-select: none;
}

#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

#overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#star {
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
  position: relative;
  animation: flyAround 5s linear infinite;
}

@keyframes flyAround {
  0% {transform: translate(0, 0) scale(1);}
  25% {transform: translate(40vw, -30vh) scale(1.2);}
  50% {transform: translate(-30vw, 30vh) scale(0.9);}
  75% {transform: translate(35vw, 40vh) scale(1.1);}
  100% {transform: translate(0, 0) scale(1);}
}

body {
  margin: 0;
  padding: 20px;
  background: radial-gradient(circle at center, #0a0025 0%, #000530 70%, #000000 100%), url('./images/background.jpg') no-repeat center/cover;
  font-family: 'Orbitron', monospace;
  color: #00f0ff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-y: auto;
}

h1 {
  font-size: 3.2rem;
  color: #00f0ff; /* яркий бирюзовый */
  text-shadow:
    0 0 8px #00f0ff,
    0 0 20px #7f00ff,   /* фиолетовый неон */
    0 0 30px #00f0ff,
    0 0 40px #7f00ff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  margin-bottom: 25px;
}
.container {
  background: rgba(0, 0, 0, 0.85);
  padding: 28px;
  border-radius: 25px;
  max-width: 900px;
  box-shadow: 0 0 40px #00ff88, 0 0 60px #00cfff;
}

label {
  font-weight: 700;
  font-size: 1.3rem;
  color: #00f0ff;
  text-align: center;
  display: block;
  margin: 18px 0 8px;
  font-family: 'Orbitron', monospace;
}

.inline-form {
  display: flex;
  gap: 14px;
  align-items: center;
}

select, input {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 14px;
  border: 2px solid #00eaff;
  background-color: #001933;
  color: #00f0ff;
  box-shadow: 0 0 15px #00eaff inset;
  transition: all 0.3s ease;
  font-family: 'Orbitron', monospace;
  box-sizing: border-box;
}

select:hover, input:hover {
  border-color: #66d9e8;
  box-shadow: 0 0 30px #66d9e8;
}

input::placeholder {
  color: #00bfff;
}

.alert_input {
  border-color: #ff0044;
  background-color: #3a101a;
  color: #ff0033;
  box-shadow: 0 0 25px #ff0044;
}

#result {
  margin-top: 25px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 15px;
  box-shadow: 0 0 40px #66d9e8, 0 0 70px #00eaff;
  color: #66d9e8;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 1.3px;
  font-family: 'Orbitron', monospace;
  text-shadow: 0 0 15px #66d9e8, 0 0 30px #00eaff;
  transition: all 0.3s ease-in-out;
}

#result:hover {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 55px #66d9e8, 0 0 80px #00ffff;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  .container {
    padding: 20px;
  }
  
  button, .open-modal-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  table td {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}

/* Затемнённый футуристический фон */
.popup-overlayMantra {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(5, 10, 20, 0.92), rgba(0, 0, 0, 0.96));
    backdrop-filter: blur(4px) brightness(0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: overlay-pulse 10s infinite ease-in-out;
}
.popup-contentMantra {
    background: linear-gradient(145deg, #041a2d 0%, #0b2d3f 100%);
    border: 3px solid #66d9e8;
    box-shadow:
        0 0 12px #66d9e8,
        0 0 25px #4a9cae,
        inset 0 0 8px rgba(102, 217, 232, 0.4);
    color: #c2f9ff;

    max-height: 80vh;
    max-width: 90vw;
    width: 600px;
    overflow-y: auto;
    overflow-x: hidden;

    border-radius: 20px 0 0 20px; /* скруглены: верхний левый и нижний левый */
    font-family: 'Orbitron', sans-serif;
    position: relative;
    animation: popup-fade 0.4s ease-out;

    scrollbar-width: thin;
    scrollbar-color: #66d9e8 #0b2d3f;
}

/* Пользовательский скролл */
.popup-contentMantra::-webkit-scrollbar {
    width: 8px;
}
.popup-contentMantra::-webkit-scrollbar-track {
    background: #0b2d3f;
}
.popup-contentMantra::-webkit-scrollbar-thumb {
    background-color: #66d9e8;
    border-radius: 4px;
    box-shadow: 0 0 6px #66d9e8;
}

@keyframes popup-fade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes overlay-pulse {
    0%, 100% {
        background: radial-gradient(circle at center, rgba(5, 10, 20, 0.92), rgba(0, 0, 0, 0.96));
    }
    50% {
        background: radial-gradient(circle at center, rgba(10, 20, 40, 0.94), rgba(0, 0, 0, 0.98));
    }
}

/* Класс, который отключает прокрутку для body */
body.popup-open {
    overflow: hidden;
}

a {
  text-decoration: underline;
  text-decoration-color: #66d9e8; /* Цвет подчёркивания в стиле Футурамы */
  text-underline-offset: 3px;     /* Смещение подчёркивания от текста */
  color: #66d9e8;                 /* Цвет текста ссылки */
  font-family: 'Orbitron', sans-serif;
  transition: color 0.3s ease;
}

a:hover {
  color: #a0f1ff;
  text-decoration-color: #a0f1ff;
}
