/* Меняем шрифт на более современный и премиальный (Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    
    background-image: url('bg_img2.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    /* Настоящий Glassmorphism: сильно прозрачный фон + сильное размытие */
    background: rgba(10, 10, 10, 0.35); 
    backdrop-filter: blur(24px); /* Глубокое размытие фона */
    -webkit-backdrop-filter: blur(24px);
    
    border-radius: 28px;
    padding: 45px 40px;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    
    /* Мягкая тень для объема */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1); 
    
    /* Тонкая полупрозрачная рамка (эффект кромки стекла) */
    border: 1px solid rgba(255, 255, 255, 0.15); 
    text-align: center;
    color: #ffffff;
}

.header h1 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 12px 0 0 0;
    letter-spacing: -0.5px;
}

.header .logo {
    font-size: 0.9em;
    color: #FFD700; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.features {
    text-align: left;
    margin: 35px 0;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Равномерные отступы между пунктами */
}

.features li {
    font-size: 0.95em;
    line-height: 1.4;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
}

.features li::before {
    content: '✓';
    color: #FFD700; 
    font-weight: 700;
    font-size: 1.1em;
    margin-right: 12px;
    margin-top: -2px; /* Выравнивание галочки по тексту */
}

.cta-section {
    margin-top: 40px;
}

.download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Градиент в стиле Apple/премиум кнопок */
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    color: #ffffff;
    padding: 18px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(213, 0, 0, 0.4);
    width: 100%;
    box-sizing: border-box;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(213, 0, 0, 0.5);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-weight: 400;
}

.disclaimer img {
    vertical-align: middle;
    width: 16px;
    margin-right: 6px;
    opacity: 0.6;
    margin-top: -2px;
}