* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.appHeader_ab {
    text-align: center;
    padding: 2rem;
    background: #ff6200;
    color: #fff;
}

.appHeader_ab h1 {
    font-size: 2.5rem;
}

.slogan_cd {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.appShowcase_ef {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.appDisplay_gh {
    text-align: center;
}

.appImage_ij {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.downloadButtons_kl {
    margin: 1rem 0;
}

.appStore_mn,
.googlePlay_op,
.downloadNow_qr {
    display: block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem 0;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}

.appStore_mn {
    background: #000;
}

.googlePlay_op {
    background: #00aaff;
}

.downloadNow_qr {
    background: #ff6200;
}

.partnerSection_st {
    padding: 2rem;
    text-align: center;
    background: #fff;
}

.partners_uv {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.partners_uv img {
    max-width: 200px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;;

}

.infoSection_xy {
    padding: 2rem;
    text-align: center;
}

.footer_zw {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 90%;
    max-width: 400px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
    opacity: 1;
}

.popup-header {
    background: #ff6200;
    color: white;
    padding: 20px;
    text-align: center;
}

.popup-header h3 {
    font-size: 1.5rem;
}

.popup-content {
    padding: 25px;
    text-align: center;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-direction: column;
}

.popup-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn.confirm {
    background: #ff6200;
    color: white;
}

.popup-btn.cancel {
    background: #f0f0f0;
    color: #333;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.popup-btn.confirm:hover {
    background: #e55a00;
}

.popup-btn.cancel:hover {
    background: #e0e0e0;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6200;
}

.download-success {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    font-size: 3.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.download-success .popup-btn {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .appHeader_ab h1 {
        font-size: 2rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .appStore_mn,
    .googlePlay_op,
    .downloadNow_qr {
        width: 100%;
        max-width: 280px;
    }
}