#mdv-downloads,
#mdv-downloads * {
    box-sizing: border-box;
}

#mdv-downloads {
    --green-light: #bcf263;
    --green: #27bf49;
    --green-dark: #199b38;
    --text: #202420;
    --muted: #6f766f;
    --border: #e3e8e3;
    --soft: #f7f9f7;
    --white: #ffffff;
    width: 100%;
    padding: 90px 20px;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 0%, rgba(188, 242, 99, 0.20), transparent 26%),
        radial-gradient(circle at 90% 90%, rgba(39, 191, 73, 0.07), transparent 25%),
        #ffffff;
    color: var(--text);
}

#mdv-downloads .mdv-download-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

#mdv-downloads .mdv-download-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

#mdv-downloads .mdv-download-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 100px;
    background: rgba(188, 242, 99, 0.28);
    color: #20863a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#mdv-downloads h1 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 760;
}

#mdv-downloads .mdv-download-header p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

#mdv-downloads .mdv-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#mdv-downloads .mdv-platform {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 210px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 35px rgba(20, 35, 20, 0.045);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

#mdv-downloads .mdv-platform:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 191, 73, 0.35);
    box-shadow: 0 18px 45px rgba(20, 35, 20, 0.08);
}

#mdv-downloads .mdv-platform-featured {
    border-color: rgba(39, 191, 73, 0.28);
    background:
        linear-gradient(135deg, rgba(188, 242, 99, 0.12), transparent 48%),
        #ffffff;
}

#mdv-downloads .mdv-badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 6px 10px;
    border-radius: 100px;
    background: var(--green-light);
    color: #184e25;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#mdv-downloads .mdv-platform-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(188, 242, 99, 0.22);
    color: var(--green);
}

#mdv-downloads .mdv-platform-icon svg {
    width: 39px;
    height: 39px;
}

#mdv-downloads .mdv-platform h2 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 23px;
    font-weight: 730;
}

#mdv-downloads .mdv-platform p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

#mdv-downloads .mdv-platform-info {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

#mdv-downloads .mdv-platform-info-top {
    justify-content: center;
    margin-top: 19px;
}

#mdv-downloads .mdv-platform-info-top .mdv-info {
    background: rgba(188, 242, 99, 0.18);
    color: #397044;
}

#mdv-downloads .mdv-info {
    padding: 5px 9px;
    border-radius: 6px;
    background: var(--soft);
    color: #7d847d;
    font-size: 11px;
    font-weight: 650;
}

#mdv-downloads .mdv-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--green);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

#mdv-downloads .mdv-download-button:hover {
    background: var(--green-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}

#mdv-downloads .mdv-download-button svg {
    width: 17px;
    height: 17px;
}

#mdv-downloads .mdv-windows-warning {
    margin-top: 13px;
    max-width: 450px;
    padding: 10px 12px;
    border-left: 3px solid #ff2b2b;
    border-radius: 4px;
    background: #fff5f5;
    color: #c82020;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

#mdv-downloads .mdv-download-note {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 30px;
    padding: 21px 24px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--soft);
}

#mdv-downloads .mdv-note-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: #215c2d;
}

#mdv-downloads .mdv-note-icon svg {
    width: 23px;
    height: 23px;
}

#mdv-downloads .mdv-download-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
}

#mdv-downloads .mdv-download-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 850px) {
    #mdv-downloads .mdv-platforms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    #mdv-downloads {
        padding: 65px 14px;
    }

    #mdv-downloads .mdv-platform {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    #mdv-downloads .mdv-platform-icon {
        width: 65px;
        height: 65px;
    }

    #mdv-downloads .mdv-badge {
        top: 20px;
        right: 20px;
    }

    #mdv-downloads .mdv-download-button {
        width: 100%;
    }
}
