.metaportal_fn_playstore {
    padding: 120px 0;
}

.playstore__header {
    text-align: center;
    margin-bottom: 60px;
}

.fn__main_desc {
    font-size: 18px;
    color: #ccc;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

.playstore__app {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app__image {
    flex: 0 0 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app_placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.app__buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.app__details {
    flex: 1;
    min-width: 300px;
}

.app__title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.app__description p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.app__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app__features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 16px;
}

.app__features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../svg/checked.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.playstore__developer {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 60px;
}

.developer__title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.developer__name {
    font-size: 18px;
    color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .playstore__app {
        flex-direction: column;
        align-items: center;
    }
    
    .app__image {
        flex: 0 0 100%;
        max-width: 300px;
    }
    
    .app__details {
        text-align: center;
    }
    
    .app__features li {
        text-align: left;
    }
}