/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a237e; /* Тёмно-синий фон как на изображении */
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Логотип как изображение */
.logo-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Контейнер для кнопок */
.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Кнопки приложений */
.app-button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    height: 60px;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Кнопка App Store */
.app-store {
    background-color: white;
    border: 2px solid #000;
    color: #000;
}

.app-store:hover {
    background-color: #f5f5f5;
}

/* Кнопка Google Play */
.google-play {
    background-color: #000;
    border: 2px solid white;
    color: white;
}

.google-play:hover {
    background-color: #333;
}

/* Иконка приложения */
.app-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
}

.app-icon svg {
    width: 24px;
    height: 24px;
}

/* Текст на кнопках */
.app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-text-small {
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.app-text-large {
    font-size: 1rem;
    font-weight: 600;
}

/* Ссылки в подвале */
.footer-links {
    margin-top: 1rem;
    text-align: center;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Адаптивный дизайн */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .app-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .download-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .logo-image {
        max-width: 200px;
    }
    
    .app-button {
        height: 50px;
        padding: 0.5rem 0.75rem;
    }
    
    .app-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .app-text-small {
        font-size: 0.6rem;
    }
    
    .app-text-large {
        font-size: 0.9rem;
    }
}
