/* ============================================
   APP CARD
============================================ */
.app-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

.app-card__info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.app-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.app-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0faf3;
    flex-shrink: 0;
}

.app-card__icon svg {
    width: 18px;
    height: 18px;
    stroke: #2e9e4f;
}

.app-card__meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.app-card__label {
    font-size: 11px;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1;
}

.app-card__value {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* ============================================
   MOD DOWNLOAD
============================================ */
.mod-download {
    margin: 40px 0 24px;
}

.mod-download__heading {
    font-size: 16px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 18px;
}

.mod-download__btn-wrap {
    margin-bottom: 16px;
}

.mod-download__btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 10px;
    padding: 14px 24px;
    min-width: 320px;
    max-width: 100%;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    box-shadow: 0 4px 16px rgba(46,204,113,.38);
}

.mod-download__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(46,204,113,.48);
    filter: brightness(1.06);
    color: #ffffff !important;
    text-decoration: none !important;
}

.mod-download__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(46,204,113,.3);
}

.mod-download__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    border-radius: 8px;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.mod-download__btn-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.mod-download__btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mod-download__btn-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.mod-download__btn-sub {
    font-size: 12px;
    color: rgba(255,255,255,.82);
    line-height: 1;
}

/* ============================================
   MOD FEATURES
============================================ */
.mod-features {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.mod-features__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mod-features__line {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #2e9e4f;
    border-radius: 3px;
    flex-shrink: 0;
}

.mod-features__title {
    font-size: 15px;
    font-weight: 700;
    color: #2e9e4f;
}

.mod-features__body {
    padding: 16px 20px 20px;
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
}

.mod-features__body p {
    margin: 0 0 6px;
}

.mod-features__body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Адаптив
============================================ */
@media (max-width: 640px) {

    /* Карточка */
    .app-card {
        padding: 16px;
    }

    .app-card__info {
        display: flex;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 12px;
    }

    .app-card__item {
        display: flex;
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Кнопка скачивания */
    .mod-download__btn {
        min-width: unset !important;
        width: 100%;
        padding: 12px 16px;
        gap: 10px;
        box-sizing: border-box;
    }

    .mod-download__btn-title {
        font-size: 14px;
    }

    .mod-download__btn-icon {
        width: 38px;
        height: 38px;
    }

    /* Особенности */
    .mod-features__body {
        padding: 14px 16px;
        font-size: 14px;
    }

    .mod-features__header {
        padding: 12px 16px;
    }
}

/* ============================================
   APP CARD — обновление с картинкой
============================================ */
.app-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

.app-card__thumb {
    flex-shrink: 0;
    width: 120px;
}

.app-card__thumb-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.app-card__info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

/* Мобильный — картинка сверху */
@media (max-width: 640px) {
    .app-card {
        flex-direction: column;
        align-items: center;
        padding: 16px;
    }

    .app-card__thumb {
        width: 100px;
    }

    .app-card__thumb-img {
        width: 100px;
        height: 100px;
    }

    .app-card__info {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        width: 100%;
        gap: 12px;
    }

    .app-card__item {
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}