/* Основные стили */
body {
    text-align: justify;
    font-family: 'Georgia', serif;
   margin: 10px;
    margin-top: 5%;
    padding: 0;
    background-color: #0d2236; /* Тёмный фон */
    color: #e0f7fa; /* Светло-бирюзовый текст */
    line-height: 1.6;
}


textarea::placeholder {
    color: #ffffff;
    opacity: 0.8; /* Делает текст слегка прозрачным (опционально) */
}

/* Логотип */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5%;
    padding-right: 5%;
}

.logo-text {
    font-family: 'Georgia', serif;
    color: #e0f7fa;
  
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(38, 166, 154, 0.6);
    
}

/* Иконка */
.menu-icon {
    width: 50px;
    height: 50px;
}

/* Меню */
.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0d2236;
    padding: 20px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin: 10px 0;
}

.mobile-nav ul li a {
    color: #e0f7fa;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #26a69a;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    header {
        margin-left: -20px;
        height: 50px;
        padding: 0 10px;
    }

    .menu-toggle {
        font-size: 0.9em;
        padding: 8px 10px;
    }

    .logo-container {
        gap: 5px;
    }

    .logo-text {
        font-size: 1.2em;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }
}

/* Основной блок */
main {
    padding: 20px;
    max-width: 900px;
margin: auto;
    margin-top: 2%;    background-color: #102a43; /* Глубокий темно-синий */
    border: 5px solid #26a69a; /* Бирюзовая рамка */
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgba(38, 166, 154, 0.6); /* Эффект свечения */
    text-align: center; /* Центрирование текста */
}



/* Рамка для карт */
.card {
    padding: 15px;
    margin: 15px;
    border: 3px solid #4dd0e1; /* Ярко-бирюзовая рамка */
    border-radius: 10px;
    background: linear-gradient(135deg, #004d40, #0d2236); /* Градиент для эффекта карты */
    color: #e0f7fa;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05); /* Легкое увеличение */
    box-shadow: 0 10px 20px rgba(38, 166, 154, 0.8);
}

/* Убираем точки списка */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px;
}

/* Всплывающее окно */
#installPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d2236;
    color: #e0f7fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 320px;
    z-index: 1200;
}

#installPopup img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(38, 166, 154, 0.7);
}

#installPopup button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px;
    font-size: 1em;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    header {
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

   main {
    padding: 20px;
    max-width: 900px;
   
    background-color: #102a43; /* Глубокий темно-синий */
    border: 5px solid #26a69a; /* Бирюзовая рамка */
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgba(38, 166, 154, 0.6); /* Эффект свечения */
    text-align: center; /* Центрирование текста */
}

    a {
        font-size: 1em;
        padding: 8px 15px;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
   main {
    padding: 20px;
    max-width: 900px;
margin: auto;
        margin-top: 20%;    background-color: #102a43; /* Глубокий темно-синий */
    border: 5px solid #26a69a; /* Бирюзовая рамка */
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgba(38, 166, 154, 0.6); /* Эффект свечения */
    text-align: center; /* Центрирование текста */
}

    a {
        font-size: 0.9em;
        padding: 8px 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Кнопки "Войти" и "Регистрация" */
/* Описание приложения */
.app-description {
    text-align: center;
  
    max-width: 800px;
    background: #102a43;
    padding: 20px;
       color: #e0f7fa;
}

.app-description h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #26a69a;
    text-shadow: 1px 1px 5px #000;
}

.app-description p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-description ul {
    list-style-type: disc;
    margin: 0 0 20px 20px;
    padding: 0;
    text-align: left; /* Выравнивание для списков */
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.auth-buttons .nav-link {
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    color: #ffffff;
    background: #26a69a;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.auth-buttons .nav-link:hover {
    background: #00796b;
    transform: scale(1.05);
}


/* Контейнер для изображения */
.image-container {
    text-align: center;
   
}

.main-image {
    max-width: 100%; /* Подстраивается под ширину экрана */
    height: auto;
    max-height: 400px; /* Ограничение по высоте */
    border-radius: 10px; /* Закругленные углы */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Тень */
}
/* Контейнер формы */
.container, .profile-container {
    margin: 100px auto;
    padding: 20px;
    background: #102a43;
    border: 3px solid #26a69a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    color: #e0f7fa;
    text-align: center;
}

/* Поля ввода */
.auth-input {
width: 90%;
padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #4dd0e1;
    border-radius: 5px;
    background-color: #0d2236;
    color: #e0f7fa;
}

/* Кнопка отправки */
.auth-button {
    background: linear-gradient(135deg, #26a69a, #00796b);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
}

.auth-button:hover {
    background: linear-gradient(135deg, #00796b, #26a69a);
    transform: scale(1.05);
}
.card {
    margin: 20px auto;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.profile-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 25px;
    background: linear-gradient(135deg, #102a43, #0d2236);
    border: 3px solid #26a69a;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #e0f7fa;
}

.profile-container h1 {
    font-size: 1.8em;
    font-weight: bold;
    color: #26a69a;
    margin-bottom: 15px;
}

.profile-container p {
    font-size: 1em;
    margin-bottom: 15px;
}

.table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table th, .table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table th {
    background: rgba(38, 166, 154, 0.3);
    color: #e0f7fa;
}

.table td {
    text-align: center;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #26a69a;
    border-radius: 5px;
    background: #0d2236;
    color: #e0f7fa;
    font-size: 1em;
}

.auth-button {
        margin-left: -10px;
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #26a69a, #00796b);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    font-size: 1.1em;
    text-align: center;
}

.auth-button:hover {
    background: linear-gradient(135deg, #00796b, #26a69a);
    transform: scale(1.05);
}

/* Делаем кнопки одинакового размера */
.auth-button,
.subscribe-button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
}

.subscribe-button {
    margin-top: 15px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border: none;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.subscribe-button:hover {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    transform: scale(1.05);
}

.support-container {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.support-text {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
}

.support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0088cc;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.support-button:hover {
    background: #007ab8;
    transform: scale(1.05);
}

.support-button i {
    font-size: 24px;
}
/* Медиа-запрос для мобильных устройств */
@media (max-width: 480px) {
    .profile-container {
        max-width: 90%;
        padding: 20px;
    }

    .table th, .table td {
        padding: 8px;
        font-size: 0.85em;
    }

    .auth-button {
        font-size: 0.9em;
        padding: 8px;
    }
}
.seo-description {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(10, 15, 30, 0.9);
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    font-family: 'Poppins', sans-serif;
}

.seo-description h2, 
.seo-description h3 {
    color: #ffcc00;
    font-weight: 600;
}

.seo-description ul {
    list-style: none;
    padding-left: 0;
}

.seo-description ul li {
    padding: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.seo-description ul li::before {
    content: "⭐";
    margin-right: 10px;
    color: #ffcc00;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.auth-button, .support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.auth-button {
    background: linear-gradient(135deg, #26a69a, #00796b);
    color: #ffffff;
    border: 2px solid #00796b;
}

.auth-button:hover {
    background: linear-gradient(135deg, #00796b, #26a69a);
    border-color: #26a69a;
}

.support-button {
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: #ffffff;
    border: 2px solid #005f99;
}

.support-button i {
    margin-right: 8px;
    font-size: 18px;
}

.support-button:hover {
    background: linear-gradient(135deg, #005f99, #0088cc);
    border-color: #0088cc;
}


footer {
    text-align: center; /* Центрирование текста */
    padding: 10px 0; /* Отступы сверху и снизу */
    background-color: #0d2236; /* Цвет фона */
    color: #e0f7fa; /* Цвет текста */
    font-size: 14px; /* Размер текста */
    border-top: 2px solid #26a69a; /* Линия сверху */
    display: flex; /* Используем flexbox */
    justify-content: center; /* Центрируем содержимое по горизонтали */
    align-items: center; /* Центрируем содержимое по вертикали */
}
