body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(to right, #667eea, #612e90);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-block {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

    .feature-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.feature-image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.feature-block h3 {
    font-size: 20px;
    color: #612e90;
    margin-bottom: 15px;
}

.feature-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Стили для галереи скриншотов */
.screenshots-section {
    margin: 50px 0;
    text-align: center;
}

.screenshots-title {
    font-size: 28px;
    color: #612e90;
    margin-bottom: 30px;
    font-weight: 700;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 30px;
    justify-items: center;
}

.screenshot-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 500px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-container:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(to right, #667eea, #612e90);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.ios-badge {
    background: linear-gradient(135deg, #000000, #3a3a3a);
}

.android-badge {
    background: linear-gradient(135deg, #3DDC84, #34A853);
}

.screenshot-container {
    position: relative;
}

.phone-frame {
    height: 100%;
    position: relative;
    display: inline-block;
}