
body {

    font-family: 'Montserrat', sans-serif; /* Используем шрифт Montserrat */

    background: linear-gradient(to right, #24d2c6 -200%, #0c0c14 30%, #fe51d8 200%);

    color: #fdffff; /* цвет текста */

    margin: 0;

    padding: 20px;

}

.menu{
    display:flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Чтобы псевдоэлемент позиционировался относительно .menu */
    padding-bottom: 20px; /* Отступ для псевдоэлемента */

}

.menuRight{
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.img{
    padding-top: 12px;
    margin-left: 60px;
}

.auth{
    margin-right:20px;
}

.burg-menu {

    cursor: pointer;

}

.burger-icon {

    width: 40px; /* Размер иконки */

    height: auto; /* Автоматическая высота для сохранения пропорций */

    filter: drop-shadow(0 0 15px rgba(254, 81, 216, 0.8)) /* Ярко-розовое свечение */

            drop-shadow(0 0 25px rgba(254, 81, 216, 0.6)) /* Более расплывчатое ярко-розовое свечение */

            drop-shadow(0 0 35px rgba(199, 0, 57, 0.6)); /* Красное свечение */

    transition: filter 0.3s ease; /* Плавный переход для фильтра */

    background-color: #24d2c6; /* Цвет иконки, если это возможно для вашего изображения */

    border-radius: 5px;

}

/* Если необходимо изменить цвет при наведении */

.burger-menu:hover .burger-icon {

    filter: drop-shadow(0 0 15px rgba(254, 81, 216, 0.8))

            drop-shadow(0 0 25px rgba(254, 81, 216, 0.6))

            drop-shadow(0 0 35px rgba(199, 0, 57, 0.6)); /* Тени при наведении */
    
    background-color: #fe51d8;

}

.overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.7); /* Чёрный фон с прозрачностью */

    display: none; /* Скрыто по умолчанию */

    z-index: 1; /* Позади меню */

}

.Burger-menu {

    position: fixed;

    top: 0;

    right: 0;

    width: 300px; /* Ширина меню */

    height: 100%;

    background: #000000; /* Цвет фона меню */

    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

    transform: translateX(100%); /* Скрыто за пределами экрана */

    transition: transform 0.3s ease; /* Анимация */

    z-index: 9999; /* Поверх затемняющего фона */

}

.Burger-menu.active {

    transform: translateX(0); /* Показать меню */

}

.Burger-menu.active ul{

    font-size: 28px;

}

.overlay.active {

    display: block; /* Показать затемняющий фон */

}

/*стили выпадающего списка*/

.Burger-menu ul {

    list-style-type: none; /* Убираем маркеры списка */

    padding-left: 10px; /* Убираем отступы */

}

.Burger-menu li {

    margin: 15px 0; /* Отступ между элементами списка */

}

.Burger-menu a {

    text-decoration: none; /* Убираем подчеркивание */

    color: #24d2c6; /* Цвет текста ссылок */

    font-weight: bold; /* Жирный текст */

    transition: color 0.3s ease; /* Плавный переход цвета */

}

.Burger-menu a:hover {

    color: rgba(254, 81, 216, 0.8); /* Цвет текста при наведении */

}

.Burger-menu a.active {

    color: rgba(254, 81, 216, 0.8); /* Цвет текста для активной ссылки */

    font-weight: bold; /* Можно добавить жирный шрифт */

    border-bottom: 2px solid rgba(254, 81, 216, 0.8); /* Подчеркивание для активной ссылки */

}

#login-popup-button, #forgot-close{
    display: block;
    margin-left: 350px;
}

#login-popup-button:hover,#forgot-close:hover {
    text-decoration: underline dashed black;
    text-underline-offset: 3px;
    cursor: pointer;
}

#forgot-password-link{
    color: #24d2c6; 
    text-decoration: underline; 
    cursor: pointer;
}

.idea{
    width: 521px;
}

.menu::before{
    content: '';

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0; /* Позиционируем псевдоэлемент внизу */

    height: 10px; /* Высота границы */

    background: linear-gradient(to right,#24d2c6 0%,#e15dc7 50%, #fe51d8 100%); /* Градиент */

    border-radius: 5px; /* Скругление углов */

    filter: blur(1px); /* Применение размытия к фону */

    z-index: -1; /* Установите z-index, чтобы псевдоэлемент был ниже другого содержимого */

    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */
}

.auth button{
    margin-right: 60px;
}

.popup-content h3 {
    color: #000000;
}

h1 {

    color: #fdffff; 
    line-height: 70px;
    font-size: 55px;
    font-family: sans-serif;
    font-weight: 900;
}

h2{
    color: #fdffff; 
    line-height: 70px;
    font-size: 35px;
    font-family: sans-serif;
    font-weight: 900;
    margin-top: 50px;
}

h3{
    color: #fdffff; 
    line-height: 70px;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 900;
}

.offer{
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}

.offer_text{
    width: 600px;
    line-height: 25px;
}

.neon-text{
    font-family: 'Caveat';
    font-size: 50px;
    color: #24d2c6;
    text-shadow: 
                0 0 5px #24d2c6,
                0 0 10px #24d2c6,
                0 0 20px #24d2c6,
                0 0 30px #24d2c6,
                0 0 40px #24d2c6,
                0 0 50px #24d2c6,
                0 0 60px #24d2c6;
    transform: rotate(-7deg);
    margin-left: 34%;
}

.form-container {

    width: 80%;

    margin: 40px auto; /* Центрирование с отступом сверху */

    position: relative; /* Для позиционирования внутренних элементов */

}

.gradient-border {

    position: relative; /* Чтобы градиент был относительно этого контейнера */

    padding: 10px; /* Отступ, чтобы не перекрывать содержимое */

    background: linear-gradient(to right, #24d2c6 0%, #e15dc7 30%, #fe51d8 100%);

    border-radius: 10px; /* Скругление углов градиентного фона */


}

.gradient-border::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 100%;

    background: inherit; /* Унаследовать градиентный фон */

    filter: blur(25px); /* Применить размытие */

    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */

    z-index: -1; /* Поместить под содержимым */

    border-radius: 10px; /* Скругление углов размытого фона */

}

.form {

    background-color: #fdffff; /* Цвет фона формы */

    border-radius: 5px; /* Скругление углов формы */

    padding: 20px; /* Отступ внутри формы */

}

.form p{
    color: #000000;
    margin-left: 30px;
    margin-right: 30px;
}

.links{
    color: #24d2c6;
}

#registerForm{

    display: flex;

    justify-content: space-around;

    align-items: center;
}

input[type="text"],

input[type="email"],

input[type="password"] {

    width: 200px;

    padding: 10px;

    font-family: 'Monserrat', sans-serif;

    margin: 10px 0; /* Отступы между инпутами */

    border-bottom: 2px solid #8e44ad; /* Фиолетовая рамка для инпутов */

    border-left: none;

    border-right: none;

    border-top: none;

}

input[type="text"]:focus,

input[type="email"]:focus,

input[type="password"]:focus {

    box-shadow: 0 0 10px #ff69b4; /* Увеличиваем неоновый эффект при фокусе */


}

/*форма сообщения об успешной регистрации*/

.popup {

    display: none; /* Скрыт по умолчанию */

    position: fixed;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    background-color: #fdffff;

    border: 1px solid #ccc;

    border-radius: 10px;

    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */

    z-index: 1000; /* Убедитесь, что попап выше других элементов */

}

.popup-content {

    padding: 20px;

    text-align: center;

    border-radius: 5px;

    color: #000000;

}


.popup button {

    margin-top: 10px;

    padding: 10px 20px;

    background-color: #ec1eb1;

    color: #fdffff;

    border: none;

    border-radius: 5px;

    cursor: pointer;

}

.popup button:hover {

    background-color: #9b59b6;

    box-shadow: 0 0 20px #ff69b4, 0 0 30px #ff69b4; /* Эффект неонового света */

}

.popup-success {

    background-color: #fdffff; 

    color: #000000; 

    border: 5px solid #24d2c6; /* Зеленая граница */

}

.popup-error {

    background-color:#fdffff; 

    color: #000000; 

    border: 5px solid #fe51d8; /* Красная граница */

}


/*конец сообщения о регистрации*/


button {

    background-color: #ec1eb1; /* Фиолетовый фон кнопки */

    color: #fdffff; /* Цвет текста */

    border: none; /* Убираем рамку */

    padding: 10px 20px; /* Отступы */

    font-size: 16px; /* Размер шрифта */

    font-family: 'Montserrat', sans-serif;

    cursor: pointer; /* Курсор при наведении */

    border-radius: 5px; /* Скругление углов */

    transition: background-color 0.3s, box-shadow 0.3s; /* Плавный переход */

    height: 40px;

}

button:hover {

    background-color: #9b59b6; /* Более светлый фиолетовый при наведении */

    box-shadow: 0 0 20px #ff69b4, 0 0 30px #ff69b4; /* Эффект неонового света */

}

/* Стили для секции "Как это работает" */
.how-it-works {
    margin: 40px 60px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

.step-number {
    background: linear-gradient(to right, #24d2c6 0%, #e15dc7 50%, #fe51d8 100%);
    color: #fdffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8),
                0 0 25px rgba(254, 81, 216, 0.6),
                0 0 35px rgba(199, 0, 57, 0.6);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.step-content p {
    font-size: 16px;
    line-height: 1.4;
}

/* Стили для секции "Решаем ваши проблемы" */
.pain-points {
    margin: 40px 60px;
    text-align: center;
}

.pain-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pain-item {
    width: 30%;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pain-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.8);
}

.pain-icon {
    margin-bottom: 15px;
}

.pain-icon img {
    width: 80px;
    height: auto;
}

.pain-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pain-item p {
    font-size: 16px;
    line-height: 1.4;
}

/* Стили для секции "Пример идеи" */
.example-idea {
    margin: 40px 60px;
    text-align: center;
}

.example-idea-box {
    background-color: #fdffff;
    color: #000000;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8),
                0 0 25px rgba(254, 81, 216, 0.6),
                0 0 35px rgba(199, 0, 57, 0.6);
    position: relative;
    text-align: left;
}

.example-idea-box h3 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.example-idea-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.idea-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}

.stat-item {
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 2px;
}

.stat-label {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.stat-value {
    color: #fe51d8;
    font-weight: bold;
}

.try-now-btn {
    display: inline-block;
    background-color: #24d2c6;
    color: #fdffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.try-now-btn:hover {
    background-color: #fe51d8;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
}

/* Стили для секции "Преимущества" */
.benefits {
    margin: 40px 60px;
    text-align: center;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.benefit {
    width: 22%;
    min-width: 220px;
    margin-bottom: 30px;
    padding: 20px;
    transition: transform 0.3s;
}

.benefit:hover {
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-icon img{
    width: 80px;
    height: auto;
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.benefit p {
    font-size: 16px;
    line-height: 1.4;
}

/* Стили для секции "Отзывы" */
.testimonials {
    margin: 40px 60px;
    text-align: center;
}

.testimonials-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.testimonial {
    width: 30%;
    min-width: 280px;
    margin-bottom: 30px;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.8);
}

.testimonial-content {
    padding: 20px;
    position: relative;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.testimonial-content p::before {
    content: '"';
    font-size: 40px;
    color: #24d2c6;
    position: absolute;
    left: 0;
    top: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(36, 210, 198, 0.1);
    border-top: 1px solid rgba(36, 210, 198, 0.3);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #aaa;
}

/* Стили для блока преимуществ регистрации */
.registration-benefits {
    margin-bottom: 20px;
    text-align: center;
}

.registration-benefits h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.3;
}

.benefits-list {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: none;
}

.benefits-list li {
    color: #000000;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

/*generate_idea*/

.log_in{
    font-size: 20px;
    margin-right: 20px;
    text-align: right;
}


/*блок h1 и правила*/
.generate{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
}

.generateText{
    width: 600px;
    line-height: 25px;
}

.popup img {
    width: 100%; /* Ширина изображения внутри попапа */
    border-radius: 5px; /* Скругление углов для изображения */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/*форма генерации идеи*/
.form-container-generate{

    position: relative; /* Для позиционирования внутренних элементов */

}

.gradient-border-generate {

    position: relative; /* Чтобы градиент был относительно этого контейнера */

    padding: 10px; /* Отступ, чтобы не перекрывать содержимое */

    background: linear-gradient(to right, #24d2c6 0%, #e15dc7 30%, #fe51d8 100%);

    border-radius: 10px; /* Скругление углов градиентного фона */


}

.gradient-border-generate::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 100%;

    background: inherit; /* Унаследовать градиентный фон */

    filter: blur(25px); /* Применить размытие */

    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */

    z-index: -1; /* Поместить под содержимым */

    border-radius: 10px; /* Скругление углов размытого фона */

}

.form-generate{

    background-color: #fdffff; /* Цвет фона формы */

    border-radius: 5px; /* Скругление углов формы */

    padding: 20px; /* Отступ внутри формы */

}

.generateIdea{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 300px;
}

.generateIdea label{
    font-size: 16px;
    color: #000000;
    margin-top: 5px;
}

.generateIdea input{
    font-size: 16px;
    color: #000000;
    width: 100%;
}

.generateIdea select{
    margin: 10px 0 20px 0;
    font-size: 16px;
    color: #000000;
    height: 40px;
    width: 100%;
}

.input-with-help {
    position: relative;
    display: flex;
    align-items: center;
}

.help-icon {
    cursor: pointer;
    margin-left: 5px;
    font-weight: bold;
    color: #24d2c6;
    padding: 3px 5px;
    border: 1px solid #24d2c6;
    border-radius: 50%;
    font-size: 10px;
}

.help-icon:hover{
    transform: scale(1.05);
}

.tooltip {
    display: none; /* Скрываем подсказку по умолчанию */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000000;
    padding: 5px;
    z-index: 10;
    margin-top: 5px;
    width: 200px; /* Ширина подсказки */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tooltip.active {
    display: block; /* Показываем подсказку, когда она активна */
}

/*форма для ответа api*/

.form-container-answer{
    width: 80%;

    margin: 40px auto; /* Центрирование с отступом сверху */

    position: relative; /* Для позиционирования внутренних элементов */

    display: none;
}

#ideaResult{
    font-size: 16px;
    color: #000000;
    line-height: 25px;
}

/*прелоадер*/

#loadingIndicator{

    display: none; /* Изначально скрываем прелоадер */

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgba(58, 55, 55, 0.8); /* Полупрозрачный фон */

    flex-direction: column;

    justify-content: center;

    align-items: center;

    z-index: 9999; /* Чтобы попап был выше других элементов */

}
.sk-circle {
    margin: 100px auto;
    width: 100px;
    height: 100px;
    position: relative;
  }
  .sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #24d2c6;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  }
  .sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg); }
  .sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg); }
  .sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  .sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
            transform: rotate(120deg); }
  .sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg); }
  .sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
            transform: rotate(210deg); }
  .sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
            transform: rotate(240deg); }
  .sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg); }
  .sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
            transform: rotate(300deg); }
  .sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg); }
  .sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; }
  .sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
  .sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; }
  .sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
  .sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; }
  .sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
  .sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; }
  .sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s; }
  .sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s; }
  
  @-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 40% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
  @keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 40% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

  #loadingText {
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 15px;
  }


  /* Стили для информации о генерации */
.generation-info {
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.generation-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    background-color: rgba(36, 210, 198, 0.1);
    border-radius: 5px;
}

.price-label {
    font-weight: bold;
    margin-right: 10px;
}

.price-value {
    font-weight: bold;
    color: #24d2c6;
    background-color: rgba(36, 210, 198, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 15px;
}

.price-hint {
    font-size: 14px;
    color: #aaa;
}

.price-hint-warning {
    color: #fe51d8;
}

/* Улучшенные стили для подсказок */
.tooltip {
    display: none;
    position: absolute;
    background-color: #fdffff;
    border: 1px solid #ccc;
    color: #000000;
    padding: 15px;
    z-index: 100;
    margin-top: 5px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.tooltip.active {
    display: block;
}

.tooltip-examples {
    margin-top: 10px;
    padding-left: 20px;
}

.tooltip-examples li {
    margin-bottom: 5px;
}

/* Стили для предупреждения о балансе */
.balance-alert {
    background: linear-gradient(to right, rgba(36, 210, 198, 0.2) 0%, rgba(254, 81, 216, 0.2) 100%);
    padding: 10px 20px;
    margin: 0 60px 20px 60px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.4);
}

.balance-alert-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.balance-alert-icon {
    font-size: 24px;
    margin-right: 15px;
}

.balance-alert-text {
    flex: 1;
}

.balance-alert-text p {
    margin: 5px 0;
}

.balance-alert-button {
    background-color: #24d2c6;
    color: #fdffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.balance-alert-button:hover {
    background-color: #fe51d8;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

/* Стили для секции "Что дальше?" */
.next-steps-section {
    margin: 40px 60px;
    text-align: center;
}

.next-steps-section h2 {
    margin-bottom: 30px;
}

.next-steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.next-step-item {
    width: 22%;
    min-width: 220px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.next-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.step-icon img{
    width: 80px;
    height: auto;
}

.next-step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.next-step-item p {
    font-size: 14px;
    line-height: 1.4;
}

/* Стили для промо-блока пакета */
.bundle-promo {
    background: linear-gradient(to right, rgba(36, 210, 198, 0.3) 0%, rgba(254, 81, 216, 0.3) 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.6);
}

.bundle-promo-content {
    text-align: center;
    margin-bottom: 15px;
}

.bundle-promo-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.bundle-promo-content p {
    font-size: 16px;
    margin-bottom: 5px;
}

.bundle-price {
    font-size: 20px !important;
    font-weight: bold;
    color: #24d2c6;
    text-shadow: 0 0 5px rgba(36, 210, 198, 0.8);
}

.bundle-promo-note {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Стили для кнопок действий после генерации идеи */
.idea-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.action-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin: 5px;
    flex: 1;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-button-primary {
    background-color: #24d2c6;
    color: #fdffff;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.action-button-primary:hover {
    background-color: #1ea59b;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.8);
}

#regenerateButton {
    background-color: #ec1eb1;
    color: #fdffff;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.5);
}

#regenerateButton:hover {
    background-color: #d01a9e;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
}

/* Стили для ссылки в попапе */
.popup-link {
    color: #24d2c6;
    text-decoration: underline;
    font-weight: bold;
}

.popup-link:hover {
    color: #fe51d8;
}


  /*Профиль*/

  .profile{
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
    
  }



    .passForm{
        display: flex;
        width: 440px;
        align-items: center;
        justify-content: space-between;
        margin-top: -20px;
    }

    #verificationForm{
        display: flex;
        align-items: center;
        justify-content: stretch;
        width: 440px;
    }

  .buyBTN{
    background-color: #24d2c6;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */
  }


 /* Стили для страницы профиля */
.profile-container {
    margin: 30px 60px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-header h1 {
    margin-bottom: 10px;
}

.welcome-message {
    font-size: 18px;
    opacity: 0.9;
}

.profile-content {
    display: flex;
    gap: 30px;
}

.profile-sidebar {
    flex: 0 0 35%;
    max-width: 35%;
}

.profile-main {
    flex: 1;
}

/* Стили для карточки пользователя */
.user-info-card {
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
}

.user-status {
    margin-bottom: 20px;
    text-align: center;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(to right, #24d2c6 0%, #fe51d8 100%);
    color: #fdffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.6);
}

.status-description {
    font-size: 14px;
    opacity: 0.9;
}

.user-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #24d2c6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.balance-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bip{
    color: #fdffff;
}

.balance-display {
    text-align: center;
    margin-bottom: 15px;
}

.balance-value {
    font-size: 36px;
    font-weight: bold;
    color: #fe51d8;
    text-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.balance-label {
    font-size: 18px;
    opacity: 0.9;
    margin-left: 5px;
}

.balance-info {
    background-color: rgba(36, 210, 198, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.balance-info p {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fdffff;
}

.balance-info ul {
    margin: 0;
    padding-left: 20px;
}

.balance-info li {
    margin-bottom: 5px;
}

.profile-container .buyBTN {
    display: block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #24d2c6;
    color: #fdffff;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
    font-size: 16px;
    margin: 0 auto;
}

.profile-container .buyBTN:hover {
    background-color: #fe51d8;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
}

.quick-actions h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    flex: 1;
    display: block;
    background-color: #24d2c6;
    color: #fdffff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.action-button:hover {
    background-color: rgba(254, 81, 216, 0.2);
    transform: translateY(-3px);
}

/* Стили для основной части профиля */
.profile-section {
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.profile-section h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fdffff;
}

.account-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
}

.info-label {
    width: 100px;
    font-weight: bold;
}

.info-value {
    flex: 1;
}

.verify-link {
    display: inline-block;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.verify-link:hover {
    background-color: #24d2c6;
}

.verified-badge {
    display: inline-block;
    background-color: #24d2c6;
    color: #fdffff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 10px;
}

.verification-form {
    display: none;
    margin-top: 15px;
    gap: 10px;
    align-items: center;
}

.verification-form input {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.verification-form button {
    background-color: #24d2c6;
    color: #fdffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.verification-form button:hover {
    background-color: #fe51d8;
}

.password-form {
    max-width: 400px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fdffff;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    font-size: 14px;
}

.password-submit {
    background-color: #24d2c6;
    color: #fdffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.password-submit:hover {
    background-color: #fe51d8;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.6);
}

.low-balance-warning {
    display: flex;
    align-items: center;
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
}

.warning-icon {
    font-size: 30px;
    margin-right: 20px;
}

.warning-content {
    flex: 1;
}

.warning-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #fdffff;
}

.warning-content p {
    margin-bottom: 15px;
    color: #fdffff;
}

.warning-button {
    display: inline-block;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.warning-button:hover {
    background-color: #24d2c6;
    transform: translateY(-3px);
}

/*Мои идеи*/

.progress-container {
    width: 100%; /* Ширина прогресс-бара */
    background-color: #e0e0e0; /* Цвет фона прогресса */
    border-radius: 5px; /* Скругление углов */
    overflow: hidden; /* Скрываем переполнение */
    height: 10px; /* Высота прогресс-бара */
    margin-top: 10px; /* Отступ сверху */
}

.progress-bar {
    height: 100%; /* Высота прогресс-бара */
    background-color: #24d2c6; /* Цвет прогресса */
    width: 0; /* Начальное значение ширины */
    transition: width 0.5s ease; /* Плавный переход */
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.8), /* Эффект неона */
                0 0 20px rgba(36, 210, 198, 0.6),
                0 0 30px rgba(199, 0, 57, 0.6); /* Размытие */
}

.grid {

    display: flex;

    flex-wrap: wrap; /* Позволяет плиткам обтекать друг друга */

    margin: 0 auto; /* Центрируем контейнер */

    width: 100%; /* Ширина контейнера */

    padding: 0 30px; /* Отступы для боков */

}


.grid-item {

    width: calc(30% - 10px); /* Ширина плитки */

    margin: 5px; /* Устанавливаем отступы между плитками */

    background-color: #fdffff;

    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8), /* Ярко-розовое свечение */

                0 0 25px rgba(254, 81, 216, 0.6), /* Более расплывчатое ярко-розовое свечение */

                0 0 35px rgba(199, 0, 57, 0.6); /* Красное свечение */

    color: #000000;

    text-align: left;

    font-size: 12px;

    padding: 20px;

    box-sizing: border-box;

    transition: transform 0.3s, box-shadow 0.3s; /* Плавный переход для трансформации и тени */

    position: relative; /* Устанавливаем положение относительно других элементов */

    z-index: 1; /* Устанавливаем начальный z-index */

}

.grid-item:hover {

    transform: scale(1.05); /* Увеличение на 5% при наведении */

    box-shadow: 0 0 20px rgba(254, 81, 216, 1), /* Увеличенный эффект свечения */

                0 0 30px rgba(254, 81, 216, 0.8),

                0 0 40px rgba(199, 0, 57, 0.8);

    z-index: 10; /* Увеличиваем z-index при наведении, чтобы быть поверх других элементов */
}


.one{
    margin:20px 60px 0 60px;
}


/* Стили для информационного блока о странице */
.ideas-intro {
    margin: 20px 60px 40px 60px;
}

.ideas-intro h1 {
    margin-bottom: 15px;
}

.ideas-intro p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.idea-progress-legend {
    background-color: rgba(12, 12, 20, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.progress-examples {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}

.progress-example {
    width: 30%;
    min-width: 200px;
    margin-bottom: 15px;
}

.progress-example .progress-container {
    margin-bottom: 5px;
}

.progress-example span {
    font-size: 14px;
    opacity: 0.8;
}

/* Стили для пустого состояния */
.empty-ideas {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    min-height: 400px;
}

.empty-ideas-content {
    text-align: center;
    max-width: 600px;
    padding: 30px;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.4);
}

.empty-ideas-content img {
    max-width: 150px;
    margin-bottom: 20px;
}

.empty-ideas-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.empty-ideas-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.generate-idea-btn {
    display: inline-block;
    background-color: #24d2c6;
    color: #fdffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.generate-idea-btn:hover {
    background-color: #fe51d8;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
    transform: translateY(-3px);
}

.small-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 15px;
}

/* Улучшенные стили для плиток с идеями */
.grid {
    margin: 0 60px;
    width: calc(100% - 120px); /* Учитываем отступы */
}

.grid-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 20px;
}

.grid-item {
    background-color: #fdffff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    overflow: hidden;
    position: relative;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.8);
}

.idea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}

.boost-idea {
    color: #24d2c6;
    font-weight: bold;
    padding-right: 5px;
    transition: color 0.3s;
}

.grid-item:hover .boost-idea {
    color: #fe51d8;
}

.idea-complete {
    color: #24d2c6;
    font-weight: bold;
}

/* Стили для блока с рекомендациями */

.ideas-tips {
    margin: 40px 60px;
    padding: 30px;
    background: linear-gradient(to right, rgba(36, 210, 198, 0.1) 0%, rgba(254, 81, 216, 0.1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.3);
}

.ideas-tips h2 {
    font-size: 20px;
    line-height: 35px;
    text-align: left;
    margin-bottom: 30px;
}

.tips-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tip-item {
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.tip-icon {
    font-size: 30px;
    margin-right: 15px;
    margin-top: 5px;
}

.tip-icon img{
    width: 80px;
    height: auto;
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tip-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.tips-cta {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(36, 210, 198, 0.2);
    border-radius: 8px;
}

.tips-cta p {
    font-size: 16px;
    font-weight: bold;
}

/*Тарифы*/

/* Стили для страницы тарифов */
.tariff-intro {
    text-align: left;
    margin: 30px 60px;
}

.tariff-intro h1 {
    margin-bottom: 15px;
}

.tariff-intro p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 auto;
}

/* Стили для информации о системе баллов */
.points-system-info {
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 60px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
}

.points-system-info h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.points-system-info > p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
}

.points-usage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.points-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.points-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.points-item.highlight {
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
}

.points-item.highlight:hover {
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.points-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 2px;
}

.points-icon img{
    width: 40px;
    height: auto;
}

.points-details {
    flex: 1;
}

.points-details strong {
    display: block;
    margin-bottom: 5px;
}

/* Стили для предупреждений */
.tariff-alert {
    display: flex;
    align-items: center;
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 60px;
}

.tariff-alert.info {
    background-color: rgba(36, 210, 198, 0.1);
    border: 1px solid rgba(36, 210, 198, 0.3);
}

.alert-icon {
    font-size: 30px;
    margin-right: 20px;
}

.alert-icon img{
    width: 40px;
    height: auto;
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.alert-content p {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.5;
}

/* Стили для карточек тарифов */
.tariff-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 60px;
}

.tariff-card {
    flex: 1;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(36, 210, 198, 0.5);
    border-color: rgba(36, 210, 198, 0.5);
}

.tariff-card.recommended {
    border-color: #fe51d8;
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.8);
}

.tariff-card.recommended:hover {
    box-shadow: 0 0 30px rgba(254, 81, 216, 0.8);
}

.tariff-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.tariff-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.tariff-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tariff-points {
    margin-bottom: 20px;
    text-align: center;
}

.points-value {
    font-size: 36px;
    font-weight: bold;
    color: #24d2c6;
    text-shadow: 0 0 10px rgba(36, 210, 198, 0.8);
}

.points-label {
    font-size: 18px;
    margin-left: 5px;
}

.tariff-value {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.generations {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.value-list {
    margin: 0 0 15px 20px;
    padding: 0;
}

.value-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.price-per-idea {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
}

.savings-label {
    display: inline-block;
    background-color: rgba(254, 81, 216, 0.2);
    color: #fe51d8;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.tariff-price {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.buy-button {
    background-color: #24d2c6;
    color: #fdffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.buy-button:hover {
    background-color: #fe51d8;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.8);
    transform: translateY(-3px);
}

.tariff-card.recommended .buy-button {
    background-color: #fe51d8;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.tariff-card.recommended .buy-button:hover {
    background-color: #e33ac0;
    box-shadow: 0 0 20px rgba(254, 81, 216, 1);
}

/* Стили для секции FAQ */
.faq-section {
    margin: 40px 60px;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #24d2c6;
}

.faq-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #24d2c6;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Стили для отзывов */
.testimonials-section {
    margin: 40px 60px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: rgba(12, 12, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(254, 81, 216, 0.8);
}

.testimonial-content {
    padding: 20px;
    position: relative;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 40px;
    color: #24d2c6;
    position: absolute;
    left: 0;
    top: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(36, 210, 198, 0.1);
    border-top: 1px solid rgba(36, 210, 198, 0.3);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    opacity: 0.8;
}

/* Стили для попапа оплаты */
.payment-popup-content {
    max-width: 500px;
    width: 90%;
    padding: 25px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #fe51d8;
}

.payment-popup-content h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #000;
}

.payment-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
    color: #000;
}

.payment-row.secondary {
    font-size: 14px;
    padding: 5px 0 5px 20px;
    color: #333;
}

.payment-divider {
    height: 1px;
    background-color: #ddd;
    margin: 10px 0;
}

.payment-button {
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.payment-button.confirm {
    background-color: #24d2c6;
    color: #fdffff;
    flex: 2;
}

.payment-button.confirm:hover {
    background-color: #1ea59b;
    box-shadow: 0 0 10px rgba(36, 210, 198, 0.5);
}

.payment-button.cancel {
    background-color: #f5f5f5;
    color: #333;
    flex: 1;
}

.payment-button.cancel:hover {
    background-color: #e0e0e0;
}

#payment-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.payment-processing {
    text-align: center;
    color: #24d2c6;
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
}

.payment-error {
    text-align: center;
    color: #fe51d8;
    padding: 10px;
    font-size: 16px;
    background-color: rgba(254, 81, 216, 0.1);
    border-radius: 5px;
}

/*оферта и политика конфидециальности*/

.spisok{
    margin: 0 60px;
}

/*сброс пароля*/

.resPas{
    color: #000000;
}

#reset-popup-message{
    color: #000000;
}


/*страница углубления идеи*/

 /* Общие стили для панели скролла */
 .im-left-panel,
 .im-right-panel {
   overflow-y: hidden;
   -webkit-overflow-scrolling: touch;
   max-height: none;
   height: auto;
   overflow-y: visible;
 }
 .im-left-panel::-webkit-scrollbar,
 .im-right-panel::-webkit-scrollbar {
   width: 8px;
 }
 .im-left-panel::-webkit-scrollbar-track,
 .im-right-panel::-webkit-scrollbar-track {
   background: transparent;
 }
 .im-left-panel::-webkit-scrollbar-thumb,
 .im-right-panel::-webkit-scrollbar-thumb {
   background-color: #24d2c6;
   border-radius: 4px;
 }
 .back-btn {
   display: inline-block;
   margin: 20px 60px 10px 60px;
   padding: 10px 20px;
   background-color: #ec1eb1;
   color: #fdffff;
   border: none;
   border-radius: 5px;
   text-decoration: none;
   transition: background-color 0.3s, box-shadow 0.3s;
 }
 .back-btn:hover {
   background-color: #9b59b6;
   box-shadow: 0 0 20px #ff69b4, 0 0 30px #ff69b4;
 }

.toggle-idea {
    display: none;
}

/* Стили для информационного блока о процессе улучшения идеи */
.idea-improvement-intro {
    margin: 20px 60px;
    text-align: left;
}

.idea-improvement-intro h1 {
    margin-bottom: 15px;
}

.idea-improvement-intro p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
}

/* Улучшенные стили для блока с идеей */
.custom-gradient-border {
    position: relative;
    padding: 10px;
    background: linear-gradient(to right, #24d2c6 0%, #e15dc7 30%, #fe51d8 100%);
    border-radius: 10px;
    margin: 20px 60px;
  }

  .im-content-box {
    background: #fdffff;
    padding: 20px;
    border-radius: 5px;
    color: #000;
  }

.im-content-box h2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}

.idea-budget {
    margin-top: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: inline-block;
}

.budget-label {
    font-weight: bold;
    margin-right: 10px;
}

.budget-value {
    color: #24d2c6;
    font-weight: bold;
}

/* Стили для контейнера модулей */
.im-module-container {
    display: flex;
    margin: 30px 60px;
    gap: 30px;
}

.im-left-panel {
    flex: 0 0 30%;
    padding: 20px;
    margin-right: 20px;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
  }

  .im-right-panel {
    flex: 1;
    padding: 20px;
    position: sticky;
    top: 20px;
  }

/* Стили для секций модулей */
.modules-section {
    margin-bottom: 30px;
}

.modules-section.hidden {
    display: none;
}

.modules-section-title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.3;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36, 210, 198, 0.3);
}

/* Стили для блока сравнения опций */
.module-comparison {
    background-color: rgba(12, 12, 20, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
}

.comparison-header {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-header h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.comparison-header p {
    font-size: 16px;
    opacity: 0.9;
}

.comparison-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.comparison-option {
    flex: 1;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.comparison-option:hover, .comparison-option.selected {
    background-color: rgba(36, 210, 198, 0.1);
    border-color: #24d2c6;
    transform: translateY(-5px);
}

.comparison-option.recommended {
    background-color: rgba(254, 81, 216, 0.1);
    border: 2px solid rgba(254, 81, 216, 0.3);
}

.comparison-option.recommended:hover, .comparison-option.recommended.selected {
    background-color: rgba(254, 81, 216, 0.2);
    border-color: #fe51d8;
}

.option-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.option-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.option-price {
    font-size: 24px;
    color: #24d2c6;
    margin-bottom: 10px;
}

.comparison-option.recommended .option-price {
    color: #fe51d8;
}

.option-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.option-bonus {
    font-weight: bold;
    color: #fe51d8;
    font-size: 14px;
}

/* Улучшенные стили для продуктов */
.im-product {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    cursor: pointer;
    background-color: rgba(12, 12, 20, 0.6);
    border: 1px solid rgba(36, 210, 198, 0.3);
    transition: all 0.3s;
}

.im-product:hover, .im-product.active {
    background-color: rgba(36, 210, 198, 0.1);
    border-color: #24d2c6;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(36, 210, 198, 0.5);
}

.im-product.purchased {
    background-color: rgba(36, 210, 198, 0.1);
    border-color: #24d2c6;
}

.im-product h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.product-cost {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-features {
    padding-left: 20px;
    margin-bottom: 0;
}

.product-features li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.im-product.bundle {
    border-color: rgba(254, 81, 216, 0.3);
    position: relative;
}

.im-product.bundle:hover, .im-product.bundle.active {
    background-color: rgba(254, 81, 216, 0.1);
    border-color: #fe51d8;
    box-shadow: 0 0 15px rgba(254, 81, 216, 0.5);
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(254, 81, 216, 0.8);
}

.purchased-label {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #24d2c6;
    text-shadow: 0 0 5px rgba(36, 210, 198, 0.8);
    transform: rotate(-7deg);
}

.im-product.bundle .purchased-label {
    color: #fe51d8;
    text-shadow: 0 0 5px rgba(254, 81, 216, 0.8);
}

/* Стили для детального просмотра модуля */
.module-details-placeholder {
    text-align: center;
    padding: 30px;
}

.module-details-placeholder img {
    max-width: 100px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.module-details-placeholder h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
}

.module-details-placeholder p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    max-width: 80%;
    margin: 0 auto;
}

#module-details h3 {
    color: #000;
  }

.detail-cost {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.detail-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.balance-info {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.balance-sufficient {
    background-color: rgba(36, 210, 198, 0.1);
    border: 1px solid rgba(36, 210, 198, 0.3);
}

.balance-insufficient {
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
}

.balance-info p {
    margin: 5px 0;
    color: #000;
}

.im-buy-btn {
    display: inline-block;
    background-color: #24d2c6;
    color: #fdffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.im-buy-btn:hover {
    background-color: #1ea59b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(36, 210, 198, 0.5);
}

.refill-btn {
    background-color: #fe51d8;
}

.refill-btn:hover {
    background-color: #e33ac0;
    box-shadow: 0 5px 15px rgba(254, 81, 216, 0.5);
}

.bundle-benefits {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
}

.bundle-benefits h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
}

.bundle-benefits ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.bundle-benefits li {
    margin-bottom: 5px;
    color: #000;
}

/* Предупреждение о низком балансе */
.low-balance-warning {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(254, 81, 216, 0.1);
    border: 1px solid rgba(254, 81, 216, 0.3);
    border-radius: 8px;
    text-align: center;
}

.low-balance-warning p {
    margin: 5px 0;
}

.balance-refill-btn {
    display: inline-block;
    background-color: #fe51d8;
    color: #fdffff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.balance-refill-btn:hover {
    background-color: #e33ac0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 81, 216, 0.5);
}

/* Для планшетов */
@media (max-width: 900px) {
    .offer {
        flex-direction: column; /* Столбец вместо строки */
        align-items: center; /* Центрируем элементы */
    }

    .offer_text {
        width: 100%; /* Занимаем 100% ширины */
        text-align: center; /* Центрируем текст */
    }

    .idea {
        width: 100%; /* Изменяем ширину изображения для мобильных устройств */
        max-width: 300px; /* Ограничиваем максимальную ширину */
        height: auto; /* Автоматическая высота для сохранения пропорций */
    }

    .menuRight {
        margin-right: 20px; /* Уменьшаем отступ */
    }

    .img {
        margin-left: 20px; /* Уменьшаем отступ */
    }

    .auth {
        margin-right: 10px; /* Уменьшаем отступ */
    }

    .generate {
        flex-direction: column; /* Вертикальное расположение */
        align-items: center; /* Центрируем элементы */
        padding-top: 20px; /* Уменьшаем отступ сверху */
    }

    .generateText {
        width: 100%; /* Занимаем 100% ширины */
        text-align: left; /* Центрируем текст */
    }

    .form-container-generate {
        width: 100%; /* Занимаем 100% ширины */
    }

    .form-generate {
        display: flex;
        flex-direction: column; /* Вертикальное расположение формы */
        align-items: center; /* Центрируем элементы формы */
    }

    select {
        width: 90%; /* Полная ширина инпутов и селектов */
        margin-bottom: 10px; /* Отступ между инпутами */
        padding: 10px; /* Увеличиваем отступы */
        border-radius: 5px; /* Скругление углов */
        border: 1px solid #8e44ad; /* Цвет рамки */
        background-color: #fdffff; /* Цвет фона */
    }

    button {
        width: 90%; /* Полная ширина кнопки */
        padding: 10px; /* Увеличиваем отступы для кнопки */
    }

    /*мои идеи*/

    .ideas-intro, .ideas-tips, .grid {
        margin: 20px 30px;
    }
    
    .progress-examples {
        flex-direction: column;
    }
    
    .progress-example {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .tip-item {
        width: 100%;
    }

    /*углубление идей*/

    .im-module-container {
        flex-direction: column;
        margin: 20px 30px;
    }
    
    .im-left-panel {
        flex: 1;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .comparison-options {
        flex-direction: column;
    }
    
    .comparison-option {
        margin-bottom: 15px;
    }
    
    .idea-improvement-intro, .custom-gradient-border {
        margin: 20px 30px;
    }
   
    /*Профиль*/
    .profile-container {
        margin: 20px 30px;
    }
    
    .profile-content {
        flex-direction: column;
    }
    
    .profile-sidebar {
        flex: 1;
        max-width: 100%;
    }
    
    .user-info-card {
        padding: 20px;
    }
    
    .verification-form {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .verification-form input,
    .verification-form button {
        width: 100%;
        margin-bottom: 10px;
    }

    /*тариф*/

    .tariff-intro, .points-system-info, .tariff-alert, .tariff-container, .faq-section, .testimonials-section {
        margin: 20px 30px;
    }
    
    .tariff-container {
        flex-direction: column;
    }
    
    .tariff-card {
        margin-bottom: 30px;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial {
        margin-bottom: 20px;
    }
    
    .points-usage {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Для мобильных устройств */
@media (max-width: 600px) {
    body {
        padding: 10px; /* Уменьшаем отступы на мобильных устройствах */
    }

    .img {
        margin-left: 0px;
    }

    .img img{
        width: 90px;
    }

    .menuRight {
        margin-right: 0; /* Убираем отступ */
        margin-top: 10px; /* Добавляем отступ сверху */
    }

    .log_in{
        font-size: 12px;
        margin-right: 13px;
    }

    .burger-icon{
        width: 30px;
    }

    
    h1{
        line-height: 30px;
        font-size: 27px;
        width: 250px;
    }
        .offer_text {
        text-align: left; /* Центрируем текст */
    }

    .offer_text p{
        font-size: 14px;
        line-height: 16px;
        margin-top: 30px;
        width: 90%; /* Занимаем 100% ширины */
    }

    .offer {
        flex-direction: column; /* Столбец вместо строки */
        align-items: center; /* Центрируем элементы */
        padding-top: 15px;
    }

    .neon-text{
        margin-left: 20%;
        font-size: 30px;
        transform: rotate(-8deg);
    }

    .how-it-works{
        margin: 30px 0;
    }

    .how-it-works h2{
        line-height: 50px;
        font-size: 20px;
    }

    .step-content h3{
        font-size: 16px;
    }

    .step-content p {
        font-size: 12px;
        line-height: 18px;
    }

    .pain-item h3{
        font-size: 16px;
    }

    .pain-item p{
        font-size: 12px;
        line-height: 16px;
    }

    .example-idea h2{
        line-height: 50px;
        font-size: 20px;
        text-align: left;
    }

    .idea {
        width: 90px; /* Изменяем ширину изображения для мобильных устройств */
        max-width: 300px; /* Ограничиваем максимальную ширину */
        height: auto; /* Автоматическая высота для сохранения пропорций */
        position: absolute;
        top: 110px;
        right: 10px;
    }

    .form-container {
        width: 100%; /* Занимаем 100% ширины */
    }

    .form {
        flex-direction: column; /* Столбец для формы */
        align-items: center; /* Центрируем элементы формы */
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        -webkit-appearance: none; /* Убираем стандартный стиль инпутов на Safari */
        appearance: none; /* Убираем стандартный стиль инпутов для других браузеров */
        width: 100%; /* Занимаем 100% ширины */
        padding: 10px;
        border: 0 0 0 1px solid; /* Убираем стандартную рамку */
        font-size: 16px; /* Минимальный размер шрифта */
        background-color: transparent; /* Прозрачный фон */
        transition: box-shadow 0.3s ease; /* Плавный переход для рамки */
    }
    
    .Burger-menu {
        width: 250px; /* Уменьшаем ширину меню */
    }

    .Burger-menu ul {
        font-size: 20px; /* Уменьшаем размер шрифта в меню */
    }

    .auth{
        margin-right: 0px;
        margin-top: 10px;
    }

    .auth button{
        margin-right: 0px;
        font-size: 12px;
        padding: 10px;
    }

    .popup{
        width: 90%;
    }

    .popup-content{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #loginForm, #forgotPasswordForm{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h3{
        font-size: 16px;
        line-height: 20px;
    }

    #login-popup-button, #forgot-close {
        margin-left: 60%;
    }

    #registerForm {
        flex-wrap: wrap;
    }

    #registerForm button{
        margin-top: 20px;
    }

    .step-content h3, .pain-item h3, .benefit h3, .example-idea-box h3 {
        font-size: 16px;
    }
    
    .example-idea {
        margin: 40px 0;
    }

    .example-idea-box p {
        font-size: 14px;
    }

    .idea-stats{
        margin: 10px 0;
    }
    
    .stat-value{
        font-size: 14px;
    }
    
    .testimonial {
        min-width: 100%;
    }

    .benefits {
        margin: 0;
    }

    .benefit{
        margin: 0;
    }

    .benefits h2{
        line-height: 35px;
        font-size: 20px;
        text-align: left;
    }

    .benefit p{
        font-size: 14px;
        line-height: 16px;
    }
    

    .registration-benefits h3 {
        font-size: 18px;
    }

    .registration-benefits {
        text-align: left;
    }

    .benefits-list {
        font-size: 14px;
    }

    .benefits-list li{
        font-size: 14px;
    }

    .form p{
        font-size: 14px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .pain-points{
        margin: 0;
    }

    .pain-points h2{
        line-height: 20px;
        font-size: 20px;
        margin-top: 20px;
    }

    /*my-idea*/

    .generateText {
        font-size: 13px; /* Меньший размер шрифта на мобильных */
        line-height: 20px;
    }

    .generateIdea{
        width: 100%;
    }

    .form-container-generate {
        width: 100%; /* Занимаем 100% ширины */
    }

    .form-generate {
        flex-direction: column; /* Вертикальное расположение формы */
        align-items: center; /* Центрируем элементы формы */
    }

    .generateIdea select {
        width: 100%; /* Занимаем 90% ширины */
        padding: 10px; /* Увеличиваем отступы */
    }

    button {
        width: 100%; /* Полная ширина кнопки */
        padding: 10px; /* Увеличиваем отступы для кнопки */
    }

    .next-steps-section{
        margin: 40px 0;
    }

    .next-steps-section h2{
        line-height: 35px;
        font-size: 20px;
        text-align: left;
    }

    .next-step-item h3{
        font-size: 16px;
    }

    .next-step-item p{
        font-size: 14px;
    }

    #ideaResult{
        font-size: 12px;
        line-height: 14px;
    }

    .form-container-answer{
        width: 100%;
    }

    .next-step-item {
        width: 100%;
    }
    
    .price-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-label, .price-value {
        margin-bottom: 5px;
    }
    
    .generation-info {
        padding: 10px;
    }
    
    .tooltip {
        width: 80%;
        left: 10%;
    }
    
    .balance-alert {
        margin: 0 10px 20px 10px;
    }

    /*профиль*/

    .profile-header{
        text-align: left;
    }

    .profile{
        flex-direction: column;
    }

    .profile-container {
        margin: 15px 15px;
    }
    
    .user-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .low-balance-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .balance-value {
        font-size: 28px;
    }
    
    .balance-label {
        font-size: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-button {
        margin-bottom: 10px;
        height: auto;
    }

    .passMail h2{
        font-size: 22px;
        line-height: 15px;
    }

    .passForm{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }

    #verificationForm{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #verification_code{
        width: 95%;
        background-color: #fdffff;
    }

    .passForm input{
        width: 95%;
        background-color: #fdffff;
    }

    /*мои идеи*/

    .ideas-intro, .ideas-tips {
        margin: 15px 15px;
    }
    
    .grid{
        margin: 15px 0;
    }
    
    .idea-progress-legend {
        padding: 15px;
    }
    
    .empty-ideas-content {
        padding: 20px 15px;
    }
    
    .ideas-tips {
        padding: 20px 15px;
    }
    
    .tip-item {
        flex-direction: column;
    }
    
    .tip-icon {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .grid-item {
        width: 100%; /* Занимаем 100% ширины на мобильных */
        margin: 10px 0; /* Устанавливаем отступы между плитками */
        padding: 15px; /* Уменьшаем внутренние отступы для мобильных */
    }

    .one{
        margin: 0;
        font-size: 27px; /* Уменьшаем размер заголовка для мобильных */
        margin-left: 20px;
        margin-top: 20px;
    }

    .spisok{
        margin: 0;
    }

    .close {
        position: absolute;
        top: 5px; /* Отступ сверху для мобильных */
        right: 10px; /* Отступ справа для мобильных */
        font-size: 24px; /* Уменьшаем размер шрифта для мобильных */
    }

    /*Для сброса инпутов*/
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }

    /*для страницы с продуктами идеи*/

    .back-btn {
        margin: 15px 15px;
        display: flex;
      }
         
    .toggle-idea {
        display: block;
        margin-top: 10px;
        color: #24d2c6;
        cursor: pointer;
        text-decoration: underline;
        font-weight: bold;
        font-size: 14px;
      }

      #idea-text.collapsed {
        max-height: 80px;
        overflow: hidden;
      }


    #idea-text{
        font-size: 12px;
    }


    .idea-budget{
        font-size: 14px;
    } 

    .im-content-box {
        max-height: auto; /* Ограничиваем максимальную высоту */
        overflow: hidden; /* Скрываем переполнение */
      }
      
    .im-module-container {
        margin: 15px 15px;
    }
    
    .im-left-panel{
        padding: 0;
        margin-right: 0;
        margin-bottom: 0px;
    }

    .modules-section {
        margin-bottom: 0px;
    }

    .comparison-header h3{
        font-size: 16px;
    }

    .comparison-header{
        font-size: 12px;
    }

    .comparison-options {
        flex-direction: row;
    }

    .option-header{
        font-size: 14px;
    }

    .option-price{
        font-size: 16px;
    }

    .option-description{
        font-size: 12px;
    }

    .comparison-option {
        padding: 12px;
    }

    .modules-section-title{
        font-size: 16px;
    }

    
    .im-product h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .product-features li {
        font-size: 10px;
        line-height: 10px;
    }

    .im-right-panel {
        padding: 0;
    }

    .idea-improvement-intro {
        margin: 15px 15px;
    }

    .custom-gradient-border{
        margin: 0;
    }

    .idea-improvement-intro {
        text-align: left;
    }

    .idea-improvement-intro p {
        font-size: 14px;
        line-height:20px;

    }
    
    .module-comparison {
        padding: 15px;
    }
    
    .modules-mobile{
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }

    .im-product {
        padding: 15px;
        min-width: 245px;
        margin-right: 15px;
    }
    
    .product-features {
        padding-left: 15px;
    }
    
    .bundle-badge, .option-badge {
        top: -5px;
        right: -5px;
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .module-details-placeholder {
        padding: 15px;
    }

    .detail-cost {
        font-size: 14px;
    }

    .detail-description {
        font-size: 12px;
        line-height: 16px;
    }

    .balance-info p{
        font-size: 14px;
    }

    /*тариф*/

    .tariff-intro, .points-system-info, .tariff-alert, .tariff-container, .faq-section, .testimonials-section {
        margin: 15px 15px;
    }
    
    .tariff-intro h1 {
        font-size: 24px;
    }
    
    .tariff-intro p {
        font-size: 16px;
    }
    
    .points-system-info {
        padding: 20px 15px;
    }
    
    .points-system-info h2 {
        font-size: 20px;
    }
    
    .points-usage {
        grid-template-columns: 1fr;
    }
    
    .tariff-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 24px;
    }
    
    .tariff-card {
        padding: 20px 15px;
    }
    
    .tariff-badge {
        font-size: 12px;
        padding: 3px 10px;
        right: 10px;
    }
    
    .tariff-card h2 {
        font-size: 20px;
    }
    
    .points-value {
        font-size: 30px;
    }
    
    .points-label {
        font-size: 16px;
    }
    
    .tariff-value {
        padding: 15px;
    }
    
    .generations, .value-list li {
        font-size: 14px;
    }
    
    .tariff-price {
        font-size: 24px;
    }
    
    .buy-button {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .faq-section, .testimonials-section {
        padding: 20px 15px;
    }
    
    .faq-section h2, .testimonials-section h2 {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 12px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .author-info strong {
        font-size: 14px;
    }
    
    .author-info span {
        font-size: 12px;
    }
    
    #payment-buttons {
        flex-direction: column;
    }
    
    .payment-button {
        margin: 5px 0;
    }
}