/* Mobile App Page Styles */

/* Mobile app download alert */
.mobile-app-download-alert {
    z-index: 9999;
}

.mobile-app-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.app-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-screenshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin: 20px auto;
    display: block;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    min-width: 250px;
    justify-content: center;
}

.download-btn-android {
    background-color: #2fb874;
    color: white;
}

.download-btn-android:hover {
    background-color: #2fb874;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 220, 132, 0.4);
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.os-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.os-badge-android {
    background-color: #3DDC84;
    color: white;
}

.os-badge-ios {
    background-color: #007AFF;
    color: white;
}
