/* Основные стили для страницы загрузки FastBot */

/* Исправление проблем с viewport */
html, body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Контейнер страницы */
.download-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.download-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.download-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Блок с сообщением о революции */
.revolution-message {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    border-left: 5px solid #fff;
}

.revolution-message h3 {
    margin-top: 0;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.revolution-message p {
    margin: 10px 0;
    line-height: 1.6;
}

.revolution-message strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Уведомление о платформах */
.platform-notice {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.platform-notice h3 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 10px;
}

.platform-notice p {
    margin: 0;
    color: #495057;
}

/* Опции загрузки */
.download-options {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.download-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.download-option:hover:not(.coming-soon):not(.blocked-option) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
    text-decoration: none;
    color: #333;
}

/* APK загрузка - основная опция */
.download-option.apk-download {
    border-color: #28a745;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.download-option.apk-download:hover {
    border-color: #1e7e34;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: white;
}

/* RuStore */
.download-option.rustore {
    border-color: #6c757d;
}

/* Huawei AppGallery */
.download-option.huawei {
    border-color: #fd7e14;
}

/* Скоро появится */
.download-option.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Заблокированная опция */
.download-option.blocked-option {
    border-color: #dc3545;
    background: #f8d7da;
    opacity: 0.8;
    cursor: not-allowed;
    color: #721c24;
}

.option-icon {
    font-size: 2.5em;
    margin-right: 20px;
    flex-shrink: 0;
}

.option-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Сообщение поддержки */
.support-message {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.support-message p {
    margin: 0;
    line-height: 1.6;
}

.support-message strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Список возможностей */
.features-list {
    margin: 30px 0;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.features-title {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #495057;
    margin-top: 0;
}

.features-content {
    font-size: 1.1em;
    color: #495057;
    line-height: 1.8;
}

/* Блок миссии */
.mission-message {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.mission-message h3 {
    margin-top: 0;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.mission-message p {
    margin: 10px 0;
    line-height: 1.6;
}

.mission-message a {
    color: #fff;
    text-decoration: underline;
}

.mission-message a:hover {
    color: #f8f9fa;
}

.mission-message strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Обратная ссылка */
.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.back-link a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .download-container {
        padding: 15px;
    }

    .download-title {
        font-size: 2em;
    }

    .download-subtitle {
        font-size: 1.1em;
    }

    .revolution-message,
    .support-message,
    .mission-message {
        padding: 20px;
    }

    .download-option {
        padding: 15px;
    }

    .option-icon {
        font-size: 2em;
        margin-right: 15px;
    }

    .option-title {
        font-size: 1.1em;
    }
}